Drizzle-ORM setup

This commit is contained in:
Justin xzHome
2025-07-06 18:13:37 +09:00
parent c1cfda32f8
commit 109da1bd33
10 changed files with 874 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE `products` (
`id` int AUTO_INCREMENT NOT NULL,
`name` varchar(255) NOT NULL,
`description` text,
`image` varchar(255),
`price` double NOT NULL,
CONSTRAINT `products_id` PRIMARY KEY(`id`)
);