Files
integreat/datomic-init/postgres-db.sql
2018-08-09 23:04:10 -07:00

13 lines
268 B
SQL
Executable File

-- Database: datomic
-- DROP DATABASE datomic;
CREATE DATABASE datomic
WITH OWNER = postgres
TEMPLATE template0
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
CONNECTION LIMIT = -1;