mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-06-15 17:45:14 +00:00
Add database migrate for viewer tracking
This commit is contained in:
parent
1b551a5b8f
commit
3d131980ae
8
src/db/4.ts
Normal file
8
src/db/4.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import * as db from "../database";
|
||||
|
||||
async function run () {
|
||||
await db.query('ALTER TABLE user_meta ADD viewers int UNSIGNED DEFAULT 0 AFTER live');
|
||||
await db.query('INSERT INTO db_meta (version) VALUES (4)');
|
||||
}
|
||||
|
||||
export { run }
|
Loading…
x
Reference in New Issue
Block a user