add default value to email_notifications and web_notifications
This commit is contained in:
@@ -21,8 +21,8 @@ return new class extends Migration
|
||||
$table->integer('validate');
|
||||
$table->integer('role')->nullable();
|
||||
$table->dateTime('verified_at')->nullable();
|
||||
$table->integer('email_notifications');
|
||||
$table->integer('web_notifiactions');
|
||||
$table->integer('email_notifications')->default(1);
|
||||
$table->integer('web_notifiactions')->default(1);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user