diff --git a/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php b/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php new file mode 100644 index 0000000..c88026f --- /dev/null +++ b/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php @@ -0,0 +1,23 @@ +string('ceo', 50)->nullable()->after('biz_no')->comment('대표자'); + $table->string('address', 255)->nullable()->after('email')->comment('주소'); + }); + } + + public function down(): void + { + Schema::table('trading_partners', function (Blueprint $table) { + $table->dropColumn(['ceo', 'address']); + }); + } +};