Add db-init script for users-table

This commit is contained in:
Jan Bader 2016-12-20 13:43:32 +01:00
parent b5114beacf
commit 2c55fbc431

6
postgres/users.sql Normal file
View File

@ -0,0 +1,6 @@
CREATE TABLE users (
id uuid,
email text,
name text,
password text
);