xxxxxxxxxx
CREATE SCHEMA my_schema;
ALTER SCHEMA my_schema OWNER TO my_user;
-- Create a new table within the schema
CREATE TABLE my_schema.my_table (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL,
age INTEGER,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP
);
xxxxxxxxxx
sudo cp /etc/postgresql/9.5/main/postgresql.conf /etc/postgresql/9.5/main/postgresql.conf.backup