Hi! I have this DDL for a table, and due to a constraint, Postgres itself generates a unique index (automatically): CREATE TABLE public.maiquel_midia ( seqmidia serial4 NO...
On using psql on Linux, when I connect with it... create table "FOOBAR" (col text); Creates the table with an uppercase name. create table FOOBAR (col text); Creates the tab...
@srozhnev Even if the unique index is on composite columns, such as seqmidia and other columns, would it still be redundant to create the second index?