diff --git a/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php b/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php new file mode 100644 index 0000000..ad98f2d --- /dev/null +++ b/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php @@ -0,0 +1,22 @@ +decimal('long_term_care', 12, 0)->default(0)->after('health_insurance'); + }); + } + + public function down(): void + { + Schema::table('payrolls', function (Blueprint $table) { + $table->dropColumn('long_term_care'); + }); + } +};