feature #1

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

View File

@ -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();

View File

@ -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();
});