diff options
author | David Baker <dave@matrix.org> | 2018-03-28 14:53:55 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-03-28 14:53:55 +0100 |
commit | 929b34963d320f571512453dac980ef235914956 (patch) | |
tree | 841816ffbe4d576bbe234ca61a0abc3e865ceb2f /synapse/storage | |
parent | Grr. Copy the definition from is_admin (diff) | |
download | synapse-929b34963d320f571512453dac980ef235914956.tar.xz |
OK, smallint it is then
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/schema/delta/48/groups_joinable.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/48/groups_joinable.sql b/synapse/storage/schema/delta/48/groups_joinable.sql index 9e106e909c..ace7d0a723 100644 --- a/synapse/storage/schema/delta/48/groups_joinable.sql +++ b/synapse/storage/schema/delta/48/groups_joinable.sql @@ -13,4 +13,4 @@ * limitations under the License. */ -ALTER TABLE groups ADD COLUMN is_joinable BOOL DEFAULT 0 NOT NULL; +ALTER TABLE groups ADD COLUMN is_joinable SMALLINT DEFAULT 0 NOT NULL; |