commit
a4caea51be
@ -40,7 +40,7 @@ var con = new pg.Client({
|
|||||||
con.connect();
|
con.connect();
|
||||||
if(args.down) {
|
if(args.down) {
|
||||||
console.log("Dropping table 'person'")
|
console.log("Dropping table 'person'")
|
||||||
var query = con.query("drop table person");
|
var query = con.query("drop table if exists person");
|
||||||
query.on('end', function() {
|
query.on('end', function() {
|
||||||
console.log("Dropped!");
|
console.log("Dropped!");
|
||||||
con.end();
|
con.end();
|
||||||
|
@ -9,6 +9,9 @@ for(var i = 0; i < process.argv.length; i++) {
|
|||||||
case 'binary':
|
case 'binary':
|
||||||
config.binary = true;
|
config.binary = true;
|
||||||
break;
|
break;
|
||||||
|
case 'down':
|
||||||
|
config.down = true;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user