| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('projects', function (Blueprint $table) { |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->string('name')->unique()->index(); |
||
| 19 | $table->string('slug')->unique()->index(); |
||
| 20 | $table->string('type')->nullable()->index(); |
||
| 21 | $table->boolean('visible')->default(false); |
||
| 22 | $table->integer('order'); |
||
| 23 | $table->timestamp('deleted_at')->nullable(); |
||
| 24 | $table->timestamps(); |
||
| 25 | }); |
||
| 26 | } |
||
| 27 | |||
| 38 |