| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| 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'); |
||
| 43 |