This commit is contained in:
2026-03-11 00:02:23 -05:00
parent b06abca5f6
commit 73dd660af3

View File

@@ -24,6 +24,7 @@ return new class extends Migration
Schema::create('user_roles', function (Blueprint $table) {
$table->unsignedBigInteger('character_id')->unique();
$table->string('role')->default('Guest');
$table->unsignedInteger('rank')->default(0);
$table->timestamps();
$table->foreign('character_id', 'fk_user_roles_character_id')