I am trying to create tables and columns with pgAdmin4 with query editor.
Each time I try
CREATE TABLE Tags
(
ID SERIAL PRIMARY KEY,
description TEXT NOT NULL
);
for example. The table created is with lower case 't' for tags and lowercase id
Any help?
Thanks