feat: implement change timestamp for subscriptions set
This commit is contained in:
parent
2f0fe08f4c
commit
6d439783b5
7 changed files with 243 additions and 7 deletions
|
|
@ -0,0 +1,6 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
alter table subscriptions
|
||||
drop column time_changed;
|
||||
|
||||
alter table subscriptions
|
||||
drop column deleted;
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
-- 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue