6 lines
167 B
SQL
6 lines
167 B
SQL
CREATE TABLE IF NOT EXISTS products (
|
|
webflowProductId INTEGER NOT NULL,
|
|
printfulProductId INTEGER NOT NULL,
|
|
UNIQUE(webflowProductId, printfulProductId)
|
|
)
|