Mercurial > hg > rc2
view SQL/mysql/2008092100.sql @ 11:aff04b06b685 default tip
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:09:03 -0500 |
parents | 4681f974d28b |
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;