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.

6 lines
184 B
SQL

CREATE TABLE IF NOT EXISTS "bookmark_categories" (
"id" serial PRIMARY KEY NOT NULL,
"name" text
);
--> statement-breakpoint
ALTER TABLE "bookmarks" ADD COLUMN "category_id" integer;