Files
omnivore/packages/db/migrations/0010.undo.user_articles_reading_percent_float.sql
2022-02-11 09:24:33 -08:00

10 lines
283 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: user_articles_reading_percent_float
-- Description: change type of user article reading percent to real/float
BEGIN;
ALTER TABLE omnivore.user_articles
ALTER column article_reading_progress TYPE smallint USING article_reading_progress::smallint;
COMMIT;