Version 0.7.0 #1

Merged
kor-elf merged 90 commits from develop into main 2023-12-08 21:18:23 +06:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 9b56522f02 - Show all commits

View File

@ -24,6 +24,7 @@ final class User extends Authenticatable
'password',
'timezone',
'is_active',
'locale',
];
/**

View File

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