nodes/store/drizzle/0000_dark_squirrel_girl.sql
Max Richter 9d4d67f086
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 13s
feat: initial backend store prototype
2024-12-17 18:15:21 +01:00

11 lines
205 B
SQL

CREATE TABLE "nodes" (
"id" serial NOT NULL,
"content" "bytea" NOT NULL,
"definition" json NOT NULL
);
--> statement-breakpoint
CREATE TABLE "users" (
"id" serial PRIMARY KEY NOT NULL,
"name" text
);