Mercurial > hg > rc1
view SQL/mysql/2008092100.sql @ 42:db1e51c59ddc
various small fixes from upgrades to PHP and/or hangover from fix to apt-get overwrite at beginning of the year somehow
author | Charlie Root |
---|---|
date | Sun, 26 Jan 2025 13:12:28 -0500 |
parents | 1e000243b222 |
children |
line wrap: on
line source
-- Updates from version 0.2-beta (InnoDB required) ALTER TABLE `cache` DROP `session_id`; ALTER TABLE `session` ADD INDEX `changed_index` (`changed`); ALTER TABLE `cache` ADD INDEX `created_index` (`created`); ALTER TABLE `users` CHANGE `language` `language` varchar(5); ALTER TABLE `cache` ENGINE=InnoDB; ALTER TABLE `session` ENGINE=InnoDB; ALTER TABLE `messages` ENGINE=InnoDB; ALTER TABLE `users` ENGINE=InnoDB; ALTER TABLE `contacts` ENGINE=InnoDB; ALTER TABLE `identities` ENGINE=InnoDB;