You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var connString = process.env.DATABASE_URL || 'postgres://localhost:5432/cmpd_feed';
var client = new pg.Client(connString);
client.connect();
var query = client.query("CREATE TABLE IF NOT EXISTS events (event_no varchar(255) PRIMARY KEY, open boolean, message varchar(200), lat decimal(9,6), lon decimal(9,6), creation timestamp)");