diff --git a/README.md b/README.md index 066f83e..afb887e 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,10 @@ This will automatically make all your table and column names have snake_case nam ```sql CREATE TABLE customers ( - id integer NOT NULL GENERATED BY DEFAULT AS IDENTITY, - full_name text NULL, - CONSTRAINT "PK_customers" PRIMARY KEY (id); + id integer NOT NULL GENERATED BY DEFAULT AS IDENTITY, + full_name text NULL, + CONSTRAINT "pk_customers" PRIMARY KEY (id) +); SELECT c.id, c.full_name FROM customers AS c