timezone change int do decimal fix set_time_by_user_timezone function

This commit is contained in:
Milos Holba
2021-01-04 12:09:23 +01:00
parent ded02fc15b
commit a100671cc0
4 changed files with 22 additions and 44 deletions

View File

@@ -14,7 +14,7 @@ class AddTimezoneToUserSettingsTable extends Migration
public function up()
{
Schema::table('user_settings', function (Blueprint $table) {
$table->integer('timezone')->after('billing_phone_number')->nullable();
$table->decimal('timezone', 10, 1)->after('billing_phone_number')->nullable();
});
}