Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('file_link_instructions', function (Blueprint $table) { |
||
17 | $table->increments('link_instructions_id'); |
||
18 | $table->integer('link_id')->unsigned(); |
||
19 | $table->longText('instruction')->nullable(); |
||
20 | $table->timestamps(); |
||
21 | $table->foreign('link_id')->references('link_id')->on('file_links')->onUpdate('cascade')->onDelete('cascade'); |
||
22 | }); |
||
35 |