数据库结构更新
This commit is contained in:
parent
ebcdd4195d
commit
980d7aaa89
|
@ -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('绑定已注册用户');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user