CREATE TABLE IF NOT EXISTS "gallery_images" (
  "id" serial PRIMARY KEY NOT NULL,
  "image_url" text NOT NULL,
  "caption_bg" text,
  "caption_en" text,
  "sort_order" integer DEFAULT 0 NOT NULL,
  "is_published" boolean DEFAULT true NOT NULL,
  "created_at" timestamp DEFAULT now() NOT NULL
);
