Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

add databases #5

Merged
merged 9 commits into from
Aug 14, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fix database name
  • Loading branch information
ucpr committed Jul 8, 2019
commit a873fa49ca6b1d0acf39217023772680295037f5
2 changes: 1 addition & 1 deletion postgres/init/user.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DROP DATABASE IF EXISTS doj_user;
CREATE DATABASE doj_user;
\c problem;
\c doj_user;

DROP TABLE IF EXISTS users;
CREATE TABLE users (
Expand Down