feature #7

Merged
XiaoLFeng merged 21 commits from feature into master 2023-06-24 22:58:58 +08:00
Showing only changes of commit 980d7aaa89 - Show all commits

View File

@ -20,6 +20,14 @@ public function up()
{ {
Schema::table('blog_link', function (Blueprint $table) { Schema::table('blog_link', function (Blueprint $table) {
$table->boolean('blogAddType')->default(0)->after('blogLocation'); $table->boolean('blogAddType')->default(0)->after('blogLocation');
$table->unsignedInteger('blogUserLocation')
->default(0)
->after('blogSetColor')
->comment('用户期望位置');
$table->unsignedBigInteger('blogForUser')
->nullable()
->after('blogUserLocation')
->comment('绑定已注册用户');
}); });
} }