%PDF- %PDF-
Direktori : /var/www/html/sljcon/database/migrations/ |
Current File : /var/www/html/sljcon/database/migrations/2018_02_22_230247_create_sections_table.php |
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSectionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sections', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->text('description'); $table->integer('order'); $table->unsignedInteger('project_id'); $table->foreign('project_id')->references('id')->on('projects'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sections'); } }