CREATE TABLE "tags" ( "id" serial PRIMARY KEY NOT NULL, "name" text NOT NULL, "created_at" timestamp DEFAULT now() NOT NULL, CONSTRAINT "tags_name_unique" UNIQUE("name") );