Files

12 lines
285 B
SQL
Raw Permalink Normal View History

-- +goose Up
-- +goose StatementBegin
ALTER TABLE user_watch_progress
ADD COLUMN IF NOT EXISTS last_edition_key TEXT;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE user_watch_progress
DROP COLUMN IF EXISTS last_edition_key;
-- +goose StatementEnd