is anyone reading these commit msgs

This commit is contained in:
biglyderv 2024-09-19 05:58:01 -04:00
parent 4763413520
commit b5e8e3d481
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
9 changed files with 66 additions and 10 deletions

2
db.js
View file

@ -14,7 +14,7 @@ async function initDb() {
await db.run(`CREATE TABLE IF NOT EXISTS auth (username TEXT, password TEXT);`);
await db.run(`CREATE TABLE IF NOT EXISTS token (username TEXT, token TEXT);`);
await db.run(`CREATE TABLE IF NOT EXISTS video (id TEXT, title TEXT, desc TEXT, username TEXT);`);
await db.run(`CREATE TABLE IF NOT EXISTS video (id TEXT, title TEXT, desc TEXT, username TEXT, date REAL);`);
return db;
}