Files
hotelsync/backend/migrations/091_reviews_guest_email.sql
HotelSync 9bda48c020
Some checks failed
Deploy to Production / deploy (push) Has been cancelled
feat: guest email field on QR review form for reply
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-21 17:43:49 +03:00

5 lines
149 B
SQL

-- Migration 091 — Add guest_email to reviews (for QR anonymous reviews)
ALTER TABLE reviews
ADD COLUMN IF NOT EXISTS guest_email VARCHAR(255);