Fix unicode support

This commit is contained in:
Erik Johnston 2015-04-02 10:06:22 +01:00
parent e24c32e6f3
commit 779f7b0f44
22 changed files with 193 additions and 168 deletions

View file

@ -13,8 +13,8 @@
* limitations under the License.
*/
CREATE TABLE IF NOT EXISTS redactions (
event_id VARCHAR(255) NOT NULL,
redacts VARCHAR(255) NOT NULL,
event_id VARCHAR(150) NOT NULL,
redacts VARCHAR(150) NOT NULL,
UNIQUE (event_id)
) ;