1
0
Fork 0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2026-06-01 06:56:48 +00:00

Add shorts identification by thumbnails

This commit is contained in:
Cadence Ember 2026-05-27 22:52:13 +12:00
parent 095dc3f918
commit 21c3f624b0
7 changed files with 235 additions and 5 deletions

View file

@ -95,6 +95,13 @@ const deltas = [
db.prepare("ALTER TABLE NEW_Subscriptions RENAME TO Subscriptions")
.run()
})()
},
// 13: Videos +short
function() {
db.prepare("ALTER TABLE Videos ADD COLUMN short INTEGER")
.run()
db.prepare("ALTER TABLE Settings ADD COLUMN show_shorts INTEGER NOT NULL DEFAULT 0")
.run()
}
]