imag/migrations/1.0.0-score-table.sql
2025-01-30 22:43:32 -06:00

6 lines
144 B
SQL

-- Migration for version 1.0.0: Score support
BEGIN TRANSACTION;
ALTER TABLE image ADD COLUMN score INTEGER;
UPDATE image SET score=0;
COMMIT;