format CREATE TABLE public.keywords ( keyword_id int4(32,0) NOT NULL, keyword varchar(255) NOT NULL, gkwp_search_volume int4(32,0), gkwp_competition_index int4(32,0), gkwp_cpc_min numeric(10,2), gkwp_cpc_max numeric(10,2), gkwp_last_updated timestamp, semrush_search_volume int4(32,0), semrush_difficulty int4(32,0), semrush_cpc numeric(10,2), semrush_intent varchar(50), semrush_last_updated timestamp, first_imported timestamp DEFAULT CURRENT_TIMESTAMP, last_updated timestamp DEFAULT CURRENT_TIMESTAMP ); (1 row) format ALTER TABLE public.keywords ADD CONSTRAINT keywords_pkey PRIMARY KEY (keyword_id); (1 row) format (0 rows) format (0 rows) ?column? CREATE UNIQUE INDEX unique_lowercase_keyword ON public.keywords USING btree (lower((keyword)::text)); (1 row)