1--
2-- This updates a 1.20.0 database to 1.20.1
3--
4-- Make changes to Users table
5--
6alter table Users modify column Username varchar(32) BINARY NOT NULL default '';
7--
8-- These are optional, but we might as well do it now
9--
10optimize table Frames;
11optimize table Events;
12optimize table Filters;
13optimize table Zones;
14optimize table Monitors;
15optimize table Stats;
16