-- Migration 003: hotel star rating
-- Adds the `stars` column to `hotels` (1-5, NULL = unrated).

ALTER TABLE hotels
    ADD COLUMN stars TINYINT UNSIGNED NULL DEFAULT NULL AFTER website;
