Files
inventory-plus-plus/database_migrations/000027_mock_events_page.up.sql
T
2026-03-01 03:36:47 -07:00

24 lines
441 B
PL/PgSQL

BEGIN;
CREATE TABLE mock.sale_form_shop_selection (
account_id INTEGER PRIMARY KEY,
platform PLATFORM NOT NULL,
shop_id TEXT NOT NULL
);
CREATE TABLE mock.refund_form_shop_selection (
account_id INTEGER PRIMARY KEY,
platform PLATFORM NOT NULL,
shop_id TEXT NOT NULL
);
CREATE TABLE mock.count_form_shop_selection (
account_id INTEGER PRIMARY KEY,
platform PLATFORM NOT NULL,
shop_id TEXT NOT NULL
);
COMMIT;