| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class CreateStatusesTable extends Migration |
||
| 8 | { |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('statuses', function (Blueprint $table) { |
||
| 12 | $table->increments('id'); |
||
| 13 | $table->string('name'); |
||
| 14 | $table->text('reason')->nullable(); |
||
| 15 | $table->morphs('model'); |
||
| 16 | $table->timestamps(); |
||
| 17 | }); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function down() |
||
| 23 | } |
||
| 24 | } |
||
| 25 |