Created DB CRUD interface.

This commit is contained in:
Jonathan Bernard
2015-02-20 17:27:05 -06:00
parent 134afd5945
commit e867732209
5 changed files with 197 additions and 24 deletions

View File

@ -4,12 +4,13 @@
-- PostgreSQL database creation sript.
-- DROP DATABASE IF EXISTS nlsongs;
CREATE DATABASE IF NOT EXISTS nlsongs
CREATE DATABASE nlsongs
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
CONNECTION LIMIT = 1;
\c nlsongs
-- Services table
DROP TABLE IF EXISTS services;