- Fix #6393 by TDobes: fixed users table after. It was not updated properly after the recent profile module changes.

4.5.x
Dries Buytaert 2004-03-12 18:30:27 +00:00
parent 929e43eb25
commit a71c5ef538
2 changed files with 2 additions and 2 deletions

View File

@ -557,7 +557,7 @@ CREATE TABLE users (
rid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (uid),
UNIQUE KEY name (name),
KEY timestamp (timestamp)
KEY changed (changed)
) TYPE=MyISAM;
--

View File

@ -523,7 +523,7 @@ CREATE TABLE users (
PRIMARY KEY (uid),
UNIQUE (name)
);
CREATE INDEX users_timestamp_idx ON users(timestamp);
CREATE INDEX users_changed_idx ON users(changed);
CREATE SEQUENCE users_uid_seq INCREMENT 1 START 1;