-- Reference migration for stores that mirror connector webhook state locally.
CREATE TABLE IF NOT EXISTS prende_shopify_webhook_receipts (
  id TEXT PRIMARY KEY,
  topic TEXT NOT NULL,
  received_at TEXT NOT NULL,
  processed_at TEXT
);
