diff --git a/database/migrations/2026_06_24_000001_add_otp_to_lunar_customers_table.php b/database/migrations/2026_06_24_000001_add_otp_to_lunar_customers_table.php new file mode 100644 index 0000000..6b95efc --- /dev/null +++ b/database/migrations/2026_06_24_000001_add_otp_to_lunar_customers_table.php @@ -0,0 +1,23 @@ +string('otp_code', 6)->nullable()->after('meta'); + $table->timestamp('otp_expires_at')->nullable()->after('otp_code'); + }); + } + + public function down(): void + { + Schema::table('lunar_customers', function (Blueprint $table) { + $table->dropColumn(['otp_code', 'otp_expires_at']); + }); + } +};