mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update migrations
This commit is contained in:
parent
7dbdbf15a5
commit
7b6c9c7428
2 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,7 @@ return new class extends Migration
|
||||||
$table->unsignedBigInteger('profile_id')->unique()->index();
|
$table->unsignedBigInteger('profile_id')->unique()->index();
|
||||||
$table->unsignedInteger('user_id')->unique()->index();
|
$table->unsignedInteger('user_id')->unique()->index();
|
||||||
$table->json('roles')->nullable();
|
$table->json('roles')->nullable();
|
||||||
|
$table->json('meta')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,8 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::table('users', function (Blueprint $table) {
|
Schema::table('users', function (Blueprint $table) {
|
||||||
$table->boolean('has_roles')->default(false);
|
$table->boolean('has_roles')->default(false);
|
||||||
|
$table->unsignedInteger('parent_id')->nullable();
|
||||||
|
$table->tinyInteger('role_id')->unsigned()->nullable()->index();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,6 +25,8 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::table('users', function (Blueprint $table) {
|
Schema::table('users', function (Blueprint $table) {
|
||||||
$table->dropColumn('has_roles');
|
$table->dropColumn('has_roles');
|
||||||
|
$table->dropColumn('parent_id');
|
||||||
|
$table->dropColumn('role_id');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue