mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
215 B
PL/PgSQL
Executable file
10 lines
215 B
PL/PgSQL
Executable file
-- Type: DO
|
|
-- Name: add_default_subscription_status
|
|
-- Description: Add default value to subscription status field
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.subscriptions
|
|
ALTER COLUMN status SET DEFAULT 'ACTIVE';
|
|
|
|
COMMIT;
|