Last active
February 18, 2020 14:36
-
-
Save carzacc/13453b285f265bfa3606f271d2601eb4 to your computer and use it in GitHub Desktop.
This file contains 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 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