Is there an official PostreSQL convention regarding capitalization in DB, Table and field names?
The examples on the official site suggest a lowercase and _ word separation, and I wonder whether this policy is official.
CREATE TABLE films (
code char(5) CONSTRAINT firstkey PRIMARY KEY,
title varchar(40) NOT NULL,
did integer NOT NULL,
date_prod date,
kind varchar(10),
len interval hour to minute
);