Skip to content

Commit 7e93199

Browse files
committed
update: database
1 parent 6c41aca commit 7e93199

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

laravel/database/migrations/2019_03_08_214658_create_permissions_and_roles.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,13 @@ public function up()
1616
Schema::create('roles', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('name');
19-
$table->string('label');
20-
$table->string('description')->nullable();
2119
$table->timestamps();
2220
});
2321

2422
Schema::create('permissions', function (Blueprint $table) {
2523
$table->increments('id');
2624
$table->string('name');
2725
$table->string('route')->default('');
28-
$table->string('label');
29-
$table->string('description')->nullable();
3026
$table->timestamps();
3127
$table->index('route');
3228
});

0 commit comments

Comments
 (0)