Albez0-An7h 49d55588b0 feat: QR redirection app
- Scanning the QR code app redicts to page
- Option to chose if we want to redirect to page or checkout
2026-03-04 13:36:11 +05:30

13 lines
385 B
SQL

-- CreateTable
CREATE TABLE "QRCode" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"title" TEXT NOT NULL,
"shop" TEXT NOT NULL,
"productId" TEXT NOT NULL,
"productHandle" TEXT NOT NULL,
"productVariantId" TEXT NOT NULL,
"destination" TEXT NOT NULL,
"scans" INTEGER NOT NULL DEFAULT 0,
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
);