Added sql init
This commit is contained in:
parent
c2f971f9e9
commit
b8fad45dcb
|
@ -1 +1,2 @@
|
|||
node_modules
|
||||
private.js
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
"version": "2.0.0",
|
||||
"dependencies": {
|
||||
"express": "4.0",
|
||||
"jade": "1.9.2"
|
||||
"jade": "1.9.2",
|
||||
"pg": "4.3.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
DROP TABLE IF EXISTS User;
|
||||
|
||||
CREATE TABLE User(
|
||||
id SERIAL PRIMARY KEY,
|
||||
name char(50)
|
||||
);
|
Loading…
Reference in New Issue