Skip to content

Support tiers

Emiliano Balbuena requested to merge feat/channel-shop into master

Closes #1461 (closed)

New Cassandra table

CREATE TABLE minds.wire_support_tiers (
    entity_guid bigint,
    currency text,
    guid bigint,
    amount decimal,
    name text,
    description text,
    PRIMARY KEY (entity_guid, currency, guid)
);

Elasticsearch schema changes

New minds_badger field on all types:

"wire_support_tier": {
  "type": "text",
  "fields": {
    "keyword": {
      "type": "keyword",
      "ignore_above": 256
    }
  }
}
Edited by Emiliano Balbuena

Merge request reports