1 1. Add registration and inactivity time stamps to the "Users" table:
5 ADD COLUMN RegistrationTS TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
6 ADD COLUMN InactivityTS BIGINT NOT NULL DEFAULT 0;
9 2. Add fields to store the total number of TUs and the quorum to the
13 ALTER TABLE TU_VoteInfo
14 ADD COLUMN ActiveTUs tinyint(3) unsigned NOT NULL default '0',
15 ADD COLUMN Quorum decimal(2, 2) unsigned NOT NULL;
18 3. Add a "fonts" category:
21 INSERT INTO PackageCategories (Category) VALUES ('fonts');