Added User Settings

This commit is contained in:
2026-06-15 12:37:14 +10:00
parent a753bffaf8
commit a270913931
20 changed files with 451 additions and 102 deletions
@@ -9,11 +9,13 @@ return new class extends Migration
/**
* Run the migrations.
*/
// database/migrations/xxxx_add_settings_to_users_table.php
public function up(): void
{
//
Schema::table('users', function (Blueprint $table) {
$table->json('settings')->nullable()->after('password');
});
}
/**
* Reverse the migrations.
*/