Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('dashboard__widgets', function (Blueprint $table) { |
||
15 | $table->engine = 'InnoDB'; |
||
16 | $table->increments('id'); |
||
17 | $table->integer('user_id')->unsigned(); |
||
18 | $table->text('widgets'); |
||
19 | |||
20 | $table->timestamps(); |
||
21 | $table->foreign('user_id')->references('id')->on(config('auth.table', 'users'))->onDelete('cascade'); |
||
22 | }); |
||
23 | } |
||
24 | |||
34 |