diff --git a/database/migrations/2024_03_24_132333_add_role_to_users_table.php b/database/migrations/2024_03_24_132333_add_role_to_users_table.php index 278f0ab..e0a99b8 100644 --- a/database/migrations/2024_03_24_132333_add_role_to_users_table.php +++ b/database/migrations/2024_03_24_132333_add_role_to_users_table.php @@ -15,8 +15,10 @@ class AddRoleToUsersTable extends Migration { Schema::table('users', function (Blueprint $table) { // - $table->string('role', 60); + $table->string('role', 60)->nullable(); }); + + // DB::statement("ALTER TABLE nominee ADD photo MEDIUMBLOB"); } /**