diff options
author | Luke Barnard <luke@matrix.org> | 2018-04-05 14:32:12 +0100 |
---|---|---|
committer | Luke Barnard <luke@matrix.org> | 2018-04-05 14:32:12 +0100 |
commit | 917380e89d2d323be1a6ea03e53a31ed335c80df (patch) | |
tree | 2b7b4d0f28c0f929ddffd703285d94d7ef2782e1 /synapse | |
parent | Use "/settings/" (plural) (diff) | |
download | synapse-917380e89d2d323be1a6ea03e53a31ed335c80df.tar.xz |
NON NULL -> NOT NULL
Diffstat (limited to 'synapse')
-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 53add94367..ce26eaf0c9 100644 --- a/synapse/storage/schema/delta/48/groups_joinable.sql +++ b/synapse/storage/schema/delta/48/groups_joinable.sql @@ -19,4 +19,4 @@ * NULL at the python store level as necessary so that existing * rows are given the correct default policy. */ -ALTER TABLE groups ADD COLUMN join_policy TEXT NON NULL DEFAULT 'invite'; +ALTER TABLE groups ADD COLUMN join_policy TEXT NOT NULL DEFAULT 'invite'; |