otter/migrations/2025-02-24-201146_subscript.../up.sql

7 lines
185 B
SQL

-- Your SQL goes here
alter table subscriptions
add column time_changed bigint not null default 0;
alter table subscriptions
add column deleted boolean not null default false;