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

10 lines
236 B
PL/PgSQL
Executable File

-- Type: DO
-- 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 real;
COMMIT;