feature #7

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

View File

@ -28,6 +28,10 @@ public function up()
->nullable() ->nullable()
->after('blogUserLocation') ->after('blogUserLocation')
->comment('绑定已注册用户'); ->comment('绑定已注册用户');
$table->string('blogRemark')
->nullable()
->after('blogForUser')
->comment('博客备注信息');
}); });
} }