Files
silo-server/migrations/sql/077_user_progress_edition_hints.sql
T

12 lines
285 B
SQL

-- +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