Skip to content

Instantly share code, notes, and snippets.

@tristansokol
Last active July 5, 2018 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tristansokol/9887adb90c8803f0cd77fc20d65b1bdb to your computer and use it in GitHub Desktop.
Save tristansokol/9887adb90c8803f0cd77fc20d65b1bdb to your computer and use it in GitHub Desktop.
var sqlite3 = require('sqlite3').verbose();
var db = new sqlite3.Database('./database.db');
db.run("CREATE TABLE customers (id TEXT, created_at TEXT, updated_at TEXT, synced_at TEXT,given_name TEXT, family_name TEXT, email_address TEXT, creation_source TEXT)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment