admin(roles): add 'permissions' column

This commit is contained in:
Matthew Penner 2021-01-16 13:06:52 -07:00
parent 9532ecf867
commit 9d005b5fd2

View file

@ -18,6 +18,7 @@ class CreateAdminRolesTable extends Migration
$table->string('name', 64);
$table->string('description', 255)->nullable();
$table->integer('sort_id');
$table->json('permissions')->nullable();
});
}