new-life-songs/src/main/sql/create-schema.postgre.sql
2015-03-07 14:20:06 -06:00

9 lines
180 B
SQL

-- DROP DATABASE IF EXISTS nlsongs;
CREATE DATABASE nlsongs
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
CONNECTION LIMIT = 1;
\c nlsongs