admin(roles): add 'permissions' column
This commit is contained in:
parent
9532ecf867
commit
9d005b5fd2
|
@ -18,6 +18,7 @@ class CreateAdminRolesTable extends Migration
|
||||||
$table->string('name', 64);
|
$table->string('name', 64);
|
||||||
$table->string('description', 255)->nullable();
|
$table->string('description', 255)->nullable();
|
||||||
$table->integer('sort_id');
|
$table->integer('sort_id');
|
||||||
|
$table->json('permissions')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue