testing
This commit is contained in:
@@ -13,7 +13,7 @@ return new class extends Migration
|
||||
{
|
||||
if(!Schema::hasTable('available_user_roles')) {
|
||||
Schema::create('available_user_roles', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->id('id');
|
||||
$table->string('role');
|
||||
$table->string('description');
|
||||
$table->timestamps();
|
||||
@@ -36,7 +36,7 @@ return new class extends Migration
|
||||
|
||||
if(!Schema::hasTable('user_permissions')) {
|
||||
Schema::create('user_permissions', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->id('id');
|
||||
$table->unsignedBigInteger('character_id')->default(0);
|
||||
$table->string('permission');
|
||||
$table->timestamps();
|
||||
|
||||
Reference in New Issue
Block a user