Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('nested_entities', function (Blueprint $table) { |
||
16 | $table->engine = 'InnoDb'; |
||
17 | |||
18 | $table->mediumInteger('id', true, true); |
||
19 | $table->string('name', 255); |
||
20 | $table->mediumInteger('left_range', false, true); |
||
21 | $table->mediumInteger('right_range', false, true); |
||
22 | $table->timestamps(); |
||
23 | $table->softDeletes(); |
||
24 | |||
25 | $table->unique(array('left_range', 'right_range')); |
||
26 | }); |
||
27 | } |
||
28 | |||
39 |