Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('photos', function(Blueprint $table) |
||
16 | { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name'); |
||
19 | $table->string('description')->nullable(); |
||
20 | $table->string('file'); |
||
21 | $table->integer('order')->unsigned(); |
||
22 | $table->integer('album_id')->unsigned(); |
||
23 | $table->foreign('album_id')->references('id')->on('albums'); |
||
24 | $table->timestamps(); |
||
25 | $table->softDeletes(); |
||
26 | }); |
||
27 | } |
||
28 | |||
40 |