forked from external-repos/noisedash
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
const db = require('../db')
|
|
|
|
module.exports = function () {
|
|
db.serialize(function () {
|
|
db.run('CREATE TABLE IF NOT EXISTS users ( username TEXT UNIQUE, hashed_password BLOB, salt BLOB, name TEXT)')
|
|
})
|
|
}
|