Skip to content

Instantly share code, notes, and snippets.

@carzacc
Last active February 18, 2020 14:36
Show Gist options
  • Save carzacc/13453b285f265bfa3606f271d2601eb4 to your computer and use it in GitHub Desktop.
Save carzacc/13453b285f265bfa3606f271d2601eb4 to your computer and use it in GitHub Desktop.
var sqlite = require('sqlite3');
var db = new sqlite.Database("users.sqlite3");
db.run(`CREATE TABLE users(
id INTEGER PRIMARY KEY,
username TEXT NOT NULL,
password TEXT NOT NULL
)`);
db.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment