数据库结构更新

This commit is contained in:
筱锋xiao_lfeng 2023-06-19 17:08:21 +08:00
parent ebcdd4195d
commit 980d7aaa89

View File

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