-- Deploy Live 2026-05-26: Verificare contact cabane (phone_verified_at + email_verified_at)
-- Rulează în phpMyAdmin pe baza de date LIVE înainte de git pull + migrate

-- Coloane noi pe tabelul cabins
ALTER TABLE `cabins`
    ADD COLUMN IF NOT EXISTS `phone_verified_at` TIMESTAMP NULL DEFAULT NULL AFTER `phone`,
    ADD COLUMN IF NOT EXISTS `email_verified_at` TIMESTAMP NULL DEFAULT NULL AFTER `email`;

-- Migrare înregistrată
INSERT IGNORE INTO `migrations` (`migration`, `batch`)
VALUES ('2026_05_26_100000_add_contact_verification_to_cabins_table', 99);
