forked from XiaoLFeng/XF_Index
数据库迁移更新
This commit is contained in:
parent
0220fd272c
commit
12308ab75d
|
@ -28,8 +28,6 @@ public function up()
|
|||
$table->boolean('blogRssJudge')->default(0);
|
||||
$table->text('blogRSS')->nullable();
|
||||
$table->string('blogServerHost')->nullable();
|
||||
$table->boolean('blogAdvJudge')->default(0);
|
||||
$table->boolean('blogSecurityJudge')->default(1);
|
||||
$table->unsignedInteger('blogLocation')->default(0);
|
||||
$table->unsignedInteger('blogSetColor')->default(0);
|
||||
$table->timestamps();
|
||||
|
|
|
@ -21,6 +21,7 @@ public function up()
|
|||
Schema::create('blog_sort', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('sort')->comment('排序(数字越小权限越大)');
|
||||
$table->boolean('userAble')->default(0)->comment('允许用户选择位置');
|
||||
$table->string('title')->comment('标题');
|
||||
$table->text('description')->comment('描述')->nullable();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user