Version 0.7.0 #1

Merged
kor-elf merged 90 commits from develop into main 2023-12-08 21:18:23 +06:00
Showing only changes of commit e5d0cac07d - Show all commits

View File

@ -19,8 +19,8 @@ return new class extends Migration
$table->timestamp('email_verified_at')->nullable(); $table->timestamp('email_verified_at')->nullable();
$table->string('password'); $table->string('password');
$table->rememberToken(); $table->rememberToken();
$table->string('locale', 2)->default('ru'); $table->unsignedInteger('locale')->nullable();
$table->string('timezone')->nullable(); $table->unsignedInteger('timezone')->nullable();
$table->timestamps(); $table->timestamps();
$table->softDeletes(); $table->softDeletes();
}); });