42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('suppliers', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
$table->string('name');
|
|
$table->string('registration_name')->nullable();
|
|
$table->string('email')->nullable();
|
|
$table->string('address')->nullable();
|
|
$table->string('city')->nullable();
|
|
$table->string('zip')->nullable();
|
|
$table->string('country_code')->default('DE')->nullable();
|
|
$table->string('tax_fc')->nullable();
|
|
$table->string('tax_vat')->nullable();
|
|
$table->string('contact_name')->nullable();
|
|
$table->string('contact_phone')->nullable();
|
|
$table->string('contact_email')->nullable();
|
|
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('suppliers');
|
|
}
|
|
};
|