diff options
author | Dave Arter <davea@mysociety.org> | 2019-06-19 15:47:39 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2019-08-16 12:01:13 +0100 |
commit | c9d9b448556f739a6a85718103fd5ec2c5ac18f2 (patch) | |
tree | 426dacbf84359faa5ae402e317a11c6224962fd8 /bin | |
parent | 8d9429a690dc6814ca3f356eb2c67cfa045dfbec (diff) |
DB changes to support OIDC auth
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update-schema | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/update-schema b/bin/update-schema index 900e628e6..3f4b2bafe 100755 --- a/bin/update-schema +++ b/bin/update-schema @@ -212,6 +212,7 @@ else { # (assuming schema change files are never half-applied, which should be the case) sub get_db_version { return 'EMPTY' if ! table_exists('problem'); + return '0068' if column_exists('users', 'oidc_ids'); return '0067' if table_exists('roles'); return '0066' if column_exists('users', 'area_ids'); return '0065' if constraint_contains('admin_log_object_type_check', 'moderation'); |