| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | |||
| 18 | |||
| 19 | Schema::create('ref_unkerjas', function (Blueprint $table) { |
||
| 20 | $table->increments('id'); |
||
| 21 | $table->string('kunker',191)->index(); |
||
| 22 | $table->string('name',191); |
||
| 23 | $table->string('kunker_simral',191)->nullable(); |
||
| 24 | $table->integer('levelunker'); |
||
| 25 | NestedSet::columns($table); |
||
| 26 | $table->timestamps(); |
||
| 27 | }); |
||
| 40 |