Commit 97d01743 authored by Chris Molozian's avatar Chris Molozian
Browse files

Avatar URL on user/group objects can now contain up to 512 characters for Facebook Instant Games.

parent cf3b25be
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -6,8 +6,10 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
## [Unreleased]
### Added
- New timeout option to HTTP request function in the code runtime.
- QoS settings on client outgoing message queue.
- Set QoS settings on client outgoing message queue.

### Changed
- The avatar URL fields in various domain objects now support up to 512 characters for FBIG.

## [2.0.0] - 2018-05-14

+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS users (
    id            UUID          NOT NULL,
    username      VARCHAR(128)  CONSTRAINT users_username_key UNIQUE NOT NULL,
    display_name  VARCHAR(255),
    avatar_url    VARCHAR(255),
    avatar_url    VARCHAR(512),
    -- https://tools.ietf.org/html/bcp47
    lang_tag      VARCHAR(18)   DEFAULT 'en',
    location      VARCHAR(255), -- e.g. "San Francisco, CA"
@@ -178,7 +178,7 @@ CREATE TABLE IF NOT EXISTS groups (
  creator_id   UUID          NOT NULL,
  name         VARCHAR(255)  CONSTRAINT groups_name_key UNIQUE NOT NULL,
  description  VARCHAR(255),
  avatar_url   VARCHAR(255),
  avatar_url   VARCHAR(512),
  -- https://tools.ietf.org/html/bcp47
  lang_tag     VARCHAR(18)   DEFAULT 'en',
  metadata     JSONB         DEFAULT '{}' NOT NULL,