weatherbot/createdb.js

21 lines
379 B
JavaScript

const bluebird = require("bluebird");
const sqlite = require("sqlite3");
function main() { // Not a part of bot.js
let db = new sqlite.Database("./db/users.db", (err) => {
if(err) {
console.log(err);
process.exit();
}
});
db.run("CREATE TABLE locations(usermask text, location text)", (err) => {
if(err) {
console.log(err);
}
});
db.close();
}
main();