Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('file_links', function (Blueprint $table) { |
||
17 | $table->increments('link_id'); |
||
18 | $table->integer('user_id')->unsigned(); |
||
19 | $table->text('link_hash'); |
||
20 | $table->text('link_name'); |
||
21 | $table->date('expire'); |
||
22 | $table->boolean('allow_upload'); |
||
23 | $table->timestamps(); |
||
24 | $table->foreign('user_id')->references('user_id')->on('users')->onUpdate('cascade')->onDelete('cascade'); |
||
25 | }); |
||
38 |