feat: 分离前端列表

This commit is contained in:
JaguarJack
2022-12-06 19:27:38 +08:00
parent 0024080c28
commit 727e887729
38 changed files with 552 additions and 146 deletions

View File

@@ -21,17 +21,17 @@ return new class () extends Migration {
$table->string('email')->comment('邮箱');
$table->string('avatar')->comment('头像');
$table->string('avatar')->nullable()->comment('头像');
$table->string('remember_token', 1000)->comment('token');
$table->string('remember_token', 1000)->nullable()->comment('token');
$table->integer('creator_id');
$table->integer('creator_id')->default(0);
$table->status();
$table->string('login_ip')->comment('登录IP');
$table->string('login_ip')->nullable()->comment('登录IP');
$table->integer('login_at')->comment('登录时间');
$table->integer('login_at')->default(0)->comment('登录时间');
$table->createdAt();