You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
362 B
SQL
17 lines
362 B
SQL
-- Updates from version 0.1-stable
|
|
|
|
TRUNCATE TABLE `messages`;
|
|
|
|
ALTER TABLE `messages`
|
|
DROP INDEX `idx`,
|
|
DROP INDEX `uid`;
|
|
|
|
ALTER TABLE `cache`
|
|
DROP INDEX `cache_key`,
|
|
DROP INDEX `session_id`,
|
|
ADD INDEX `user_cache_index` (`user_id`,`cache_key`);
|
|
|
|
ALTER TABLE `users`
|
|
ADD INDEX `username_index` (`username`),
|
|
ADD INDEX `alias_index` (`alias`);
|