Merge two PremiumList entities (#690)

This commit is contained in:
Shicong Huang 2020-07-21 18:18:52 -04:00 committed by GitHub
parent 4e0ca19d2e
commit f5186f8476
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)
);