D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
database
/
migrations
/
Filename :
2014_12_01_000031_create_sm_instructions_table.php
back
Copy
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSmInstructionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sm_instructions', function (Blueprint $table) { $table->increments('id'); $table->string('title', 200); $table->text('description'); $table->tinyInteger('active_status')->default(1); $table->timestamps(); $table->integer('created_by')->nullable()->default(1)->unsigned(); $table->integer('updated_by')->nullable()->default(1)->unsigned(); $table->integer('school_id')->nullable()->default(1)->unsigned(); $table->foreign('school_id')->references('id')->on('sm_schools')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sm_instructions'); } }