Hotel Table Migration
✅ ALTER TABLE hotels ADD COLUMN IF NOT EXISTS highlights TEXT AFTER description
✅ ALTER TABLE hotels ADD COLUMN IF NOT EXISTS negatives TEXT AFTER highlights
✅ ALTER TABLE hotels ADD COLUMN IF NOT EXISTS room_info TEXT AFTER negatives
--- Current hotels table structure ---
id | int(11)
name | varchar(255)
slug | varchar(255)
city | varchar(100)
destination | varchar(100)
star_rating | int(11)
address | text
description | text
highlights | text
negatives | text
created_at | timestamp
room_info | text
--- Migration complete! ---