add section taxonomy

This commit is contained in:
xiaomlove
2022-09-07 17:10:52 +08:00
parent 45f467cc75
commit 0b45b1d05f
22 changed files with 484 additions and 4 deletions

View File

@@ -15,6 +15,12 @@ return new class extends Migration
{
Schema::table('searchbox', function (Blueprint $table) {
$table->json('extra')->nullable()->change();
$table->string('custom_fields_display_name')->nullable(true)->default('')->change();
});
Schema::table('categories', function (Blueprint $table) {
$table->string('class_name')->nullable(true)->default('')->change();
$table->string('image')->nullable(true)->default('')->change();
});
}