mock store tables stubbed in db schema

This commit is contained in:
2026-01-21 20:15:44 -07:00
parent 321bc6fc00
commit b182685ec3
5 changed files with 476 additions and 13 deletions
@@ -8,9 +8,9 @@ CREATE TABLE sync_groups (
CREATE TABLE sync_group_listings (
sync_group_id INTEGER NOT NULL REFERENCES sync_groups,
order_index INTEGER NOT NULL,
platform platform,
shop_id TEXT,
listing_id TEXT,
platform platform NOT NULL,
shop_id TEXT NOT NULL,
listing_id TEXT NOT NULL,
PRIMARY KEY (sync_group_id, order_index)
);