You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2008030300.sql 362B

12345678910111213141516
  1. -- Updates from version 0.1-stable
  2. TRUNCATE TABLE `messages`;
  3. ALTER TABLE `messages`
  4. DROP INDEX `idx`,
  5. DROP INDEX `uid`;
  6. ALTER TABLE `cache`
  7. DROP INDEX `cache_key`,
  8. DROP INDEX `session_id`,
  9. ADD INDEX `user_cache_index` (`user_id`,`cache_key`);
  10. ALTER TABLE `users`
  11. ADD INDEX `username_index` (`username`),
  12. ADD INDEX `alias_index` (`alias`);