Path : /var/www/clients/client0/web25/web/database/migrations/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/database/migrations/2023_01_01_191342_create_staff_table.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. * * @return void */ public function up() { Schema::create('staff', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->id(); $table->string('lastName'); $table->string('firstName'); $table->string('gender'); $table->string('phone')->nullable(true); $table->string('email')->unique()->nullable(true); $table->string('position'); $table->text('description'); $table->foreignId('feature_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('staff'); } };