This commit is contained in:
Owen
2026-09-16 10:11:20 -04:00
parent 262ca8a1d0
commit 735787b183
+2 -2
View File
@@ -16,13 +16,13 @@ export default async function migration() {
db.transaction(() => {
db.prepare(
`
ALTER TABLE 'newt' ADD COLUMN IF NOT EXISTS 'agent' text;
ALTER TABLE 'newt' ADD COLUMN 'agent' text;
`
).run();
db.prepare(
`
ALTER TABLE 'newt' ADD COLUMN IF NOT EXISTS 'agentVersion' text;
ALTER TABLE 'newt' ADD COLUMN 'agentVersion' text;
`
).run();
})();