fix faulty DB migration and remove default, server is the default
This commit is contained in:
parent
dab0cc8cbd
commit
777913923f
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ class AddTimezoneToServerSettingsTable extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('server_settings', function (Blueprint $table) {
|
Schema::table('server_settings', function (Blueprint $table) {
|
||||||
$table->string('server_timezone')->default('UTC');
|
$table->string('server_timezone')->default('');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue