Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
Issues
makenotwork
/
server
/
migrations
/
092_media_scan_status.sql
268 B · 5 lines
History
Blame
Raw
1
--
Add scan_status to media_files so list queries can filter without a JOIN.
2
--
Existing rows default to 'clean' (they passed scanning at confirm time or
3
--
were uploaded by trusted users).
4
ALTER
TABLE
media_files ADD COLUMN scan_status
TEXT
NOT NULL
DEFAULT
'
clean
'
;
5