| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 15 | 
| Code Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 15 | public function up()  | 
            ||
| 16 |     { | 
            ||
| 17 |         Schema::create('opd', function (Blueprint $table) { | 
            ||
| 18 |             //$table->increments('id'); | 
            ||
| 19 |             $table->uuid('id')->unique(); | 
            ||
| 20 |             $table->primary('id'); | 
            ||
| 21 |             $table->string('kunker')->index(); | 
            ||
| 22 |             $table->string('name'); | 
            ||
| 23 |             $table->string('kunker_sinjab')->nullable();             | 
            ||
| 24 |             $table->string('kunker_simral')->nullable(); | 
            ||
| 25 |             $table->integer('levelunker'); | 
            ||
| 26 |             $table->string('njab'); | 
            ||
| 27 |             $table->string('npej'); | 
            ||
| 28 | NestedSet::columns($table);  | 
            ||
| 29 | $table->timestamps();  | 
            ||
| 30 | });  | 
            ||
| 43 |