irc_bot/components/db.js

16 lines
329 B
JavaScript
Raw Permalink Normal View History

2022-03-27 00:59:23 +00:00
import Database from "better-sqlite3";
2022-03-26 20:58:59 +00:00
const InitDB = () => {
2022-03-27 00:59:23 +00:00
const db = new Database("./db/users.db", null);
const createTable = `CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
nick TEXT,
city TEXT,
createdAt TEXT
)`;
db.exec(createTable);
2022-03-26 20:58:59 +00:00
};
export default InitDB;