mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Add a 6 char key to user_birthday
git-svn-id: file:///svn/phpbb/trunk@4036 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
659554b096
commit
f3c308f67c
1 changed files with 2 additions and 1 deletions
|
@ -887,7 +887,8 @@ CREATE TABLE phpbb_users (
|
||||||
user_newpasswd varchar(32) DEFAULT '' NOT NULL,
|
user_newpasswd varchar(32) DEFAULT '' NOT NULL,
|
||||||
user_occ varchar(255) DEFAULT '' NOT NULL,
|
user_occ varchar(255) DEFAULT '' NOT NULL,
|
||||||
user_interests varchar(255) DEFAULT '' NOT NULL,
|
user_interests varchar(255) DEFAULT '' NOT NULL,
|
||||||
PRIMARY KEY (user_id)
|
PRIMARY KEY (user_id),
|
||||||
|
KEY user_birthday (user_birthday(6))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue