You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kon.sh/frontend/drizzle/0003_glorious_norrin_radd.sql

8 lines
257 B
SQL

CREATE TABLE IF NOT EXISTS "project" (
"id" serial PRIMARY KEY NOT NULL,
"uuid" uuid DEFAULT gen_random_uuid(),
"name" varchar(255) NOT NULL,
"user_id" integer NOT NULL
);
--> statement-breakpoint
ALTER TABLE "shortener" ADD COLUMN "project_id" integer;