| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class CreateRolesTable extends Migration |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Run the migrations. |
||
| 11 | */ |
||
| 12 | public function up() |
||
| 13 | { |
||
| 14 | Schema::create('roles', function (Blueprint $table) { |
||
| 15 | $table->increments('role_id'); |
||
| 16 | $table->string('name'); |
||
| 17 | }); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Reverse the migrations. |
||
| 22 | */ |
||
| 23 | public function down() |
||
| 26 | } |
||
| 27 | } |
||
| 28 |