| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- use App\Database\Migrations\TenantMigration;
- return new class extends TenantMigration
- {
- /**
- * Run the migrations.
- */
- public function up(): void
- {
- Schema::create('companies', function (Blueprint $table) {
- $table->id();
- $table->string('name');
- $table->string('business_name')->nullable();
- $table->string('logo')->nullable();
- $table->string('phone')->nullable();
- $table->string('email')->nullable();
- $table->string('pec')->nullable();
- $table->date('costitution_date')->nullable();
- $table->string('address')->nullable();
- $table->string('zip')->nullable();
- $table->unsignedBigInteger('city_id')->nullable();
- $table->foreign('city_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade');
- $table->unsignedBigInteger('country_id')->nullable();
- $table->foreign('country_id')->nullable()->references('id')->on('countries')->onUpdate('cascade')->onDelete('cascade');
- $table->string('operational_headquarters')->nullable();
- $table->string('fiscal_code')->nullable();
- $table->string('vat')->nullable();
- $table->string('sdi_code')->nullable();
- $table->string('ateco_code')->nullable();
- $table->boolean('enabled')->default(1);
- $table->softDeletes();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('companies');
- }
- };
|