diff --git a/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php b/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php new file mode 100644 index 0000000..84b9fee --- /dev/null +++ b/database/migrations/2026_03_14_165100_add_options_to_sales_tenant_managements_table.php @@ -0,0 +1,30 @@ +table('sales_tenant_managements', function (Blueprint $table) { + $table->json('options')->nullable()->after('notes')->comment('프로모션, 기타 확장 데이터'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::connection('codebridge')->table('sales_tenant_managements', function (Blueprint $table) { + $table->dropColumn('options'); + }); + } +};