diff --git a/contacts-troubleshoot/bin/www b/contacts-troubleshoot/bin/www index d3a1fdae3..b268af1d8 100755 --- a/contacts-troubleshoot/bin/www +++ b/contacts-troubleshoot/bin/www @@ -1,8 +1,6 @@ #!/usr/bin/env node -/** - * Module dependencies. - */ + var app = require('../app'); var debug = require('debug')('contacts:server'); diff --git a/contacts-troubleshoot/sql/contacts.sql b/contacts-troubleshoot/sql/contacts.sql index a22bbd90b..ffbe7aa00 100644 --- a/contacts-troubleshoot/sql/contacts.sql +++ b/contacts-troubleshoot/sql/contacts.sql @@ -1,5 +1,5 @@ drop table if exists contacts; - +/*create table */ create table contacts(id serial primary key,firstname varchar(30) not null,lastname varchar(30) not null, email varchar(30) not null); insert into contacts(firstname, lastname, email) values