7 lines
109 B
SQL

-- Your SQL goes here
CREATE TABLE "projects"(
"id" SERIAL NOT NULL PRIMARY KEY,
"title" TEXT NOT NULL
);