Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('media__imageables', function (Blueprint $table) { |
||
15 | $table->engine = 'InnoDB'; |
||
16 | $table->increments('id'); |
||
17 | $table->integer('file_id'); |
||
18 | $table->integer('imageable_id'); |
||
19 | $table->string('imageable_type'); |
||
20 | $table->string('zone'); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
23 | } |
||
24 | |||
34 |