Merge two PremiumList entities (#690)

This commit is contained in:
Shicong Huang 2020-07-21 18:18:52 -04:00 committed by GitHub
parent d0aa55e976
commit 26e7e72727
14 changed files with 225 additions and 226 deletions

View file

@ -374,10 +374,10 @@ create sequence history_id_sequence start 1 increment 1;
create table "PremiumList" (
revision_id bigserial not null,
bloom_filter bytea not null,
creation_timestamp timestamptz not null,
currency text not null,
name text not null,
bloom_filter bytea not null,
currency text not null,
primary key (revision_id)
);