| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function up(): void |
||
| 11 | { |
||
| 12 | //Action when migrate up |
||
| 13 | $this->create('roles', function (CreateTable $table) { |
||
| 14 | $table->integer('id') |
||
| 15 | ->autoincrement() |
||
| 16 | ->primary(); |
||
| 17 | $table->string('description') |
||
| 18 | ->description('The role description'); |
||
| 19 | $table->datetime('created_at') |
||
| 20 | ->description('role created at') |
||
| 21 | ->notNull(); |
||
| 22 | $table->datetime('updated_at') |
||
| 23 | ->description('role updated at'); |
||
| 24 | |||
| 25 | $table->engine('INNODB'); |
||
| 26 | }); |
||
| 34 | } |