| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| 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 | |||
| 18 | $table->string('name')
|
||
| 19 | ->description('The role name')
|
||
| 20 | ->notNull(); |
||
| 21 | |||
| 22 | $table->string('description')
|
||
| 23 | ->description('The role description');
|
||
| 24 | |||
| 25 | $table->timestamps(); |
||
| 26 | |||
| 27 | $table->engine('INNODB');
|
||
| 28 | }); |
||
| 37 |