Last active
July 5, 2018 20:22
-
-
Save tristansokol/9887adb90c8803f0cd77fc20d65b1bdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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