diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 11:42:28 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 11:42:28 +0100 |
commit | 204132a998ec3be7069a9f2dada323bcdb217908 (patch) | |
tree | daca5c26782846ba1ff66260f8fef4a246522b64 /synapse/storage/engines/_base.py | |
parent | improve postgres blurb a bit (diff) | |
download | synapse-204132a998ec3be7069a9f2dada323bcdb217908.tar.xz |
Check that postgres database has correct charset set
Diffstat (limited to 'synapse/storage/engines/_base.py')
-rw-r--r-- | synapse/storage/engines/_base.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/synapse/storage/engines/_base.py b/synapse/storage/engines/_base.py new file mode 100644 index 0000000000..0b549d314b --- /dev/null +++ b/synapse/storage/engines/_base.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 OpenMarket Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +class IncorrectDatabaseSetup(RuntimeError): + pass |