Setting up more printful logic. Setting up db.

This commit is contained in:
Dominic Ferrando
2025-05-03 13:54:55 -04:00
parent 6cd2d72fc5
commit bb7c041c48
8 changed files with 233 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS products (
webflowProductId INTEGER NOT NULL,
printfulProductId INTEGER NOT NULL,
UNIQUE(webflowProductId, printfulProductId)
)