imag/migrations/1.0.0-score-table.sql

7 lines
144 B
MySQL
Raw Permalink Normal View History

2025-01-30 22:43:32 -06:00
-- Migration for version 1.0.0: Score support
BEGIN TRANSACTION;
ALTER TABLE image ADD COLUMN score INTEGER;
UPDATE image SET score=0;
COMMIT;