| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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('resources', function (Blueprint $table) {
- $table->id();
- $table->unsignedBigInteger('user_id')->nullable();
- //$table->foreign('birth_place_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade');
- $table->string('first_name')->nullable();
- $table->string('last_name')->nullable();
- $table->date('birth_day')->nullable();
- $table->unsignedBigInteger('birth_place_id')->nullable();
- $table->foreign('birth_place_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade');
- $table->string('fiscal_code')->nullable();
- $table->string('phone')->nullable();
- $table->string('email')->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->boolean('domicile')->default(1);
- $table->boolean('enabled')->default(1);
- $table->softDeletes();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('resources');
- }
- };
|