feature #1

Merged
XiaoLFeng merged 27 commits from feature into master 2023-06-15 16:08:34 +08:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 1cd8f46fc7 - Show all commits

View File

@ -23,6 +23,7 @@ public function up()
$table->string('username',40);
$table->string('email',100)->unique();
$table->string('password',255);
$table->rememberToken();
$table->timestamps();
});
}

View File

@ -19,8 +19,8 @@ class UpdateUsersTable extends Migration
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->rememberToken()->after('password');
$table->integer('linkId')->unique()->nullable()->default(null)->after('remember_token');
$table->string('icon')->default('https://api.x-lf.cn/avatar/?uid=1')->after('remember_token');
});
}