extended the password column in the user table

This commit is contained in:
SJ 2012-08-01 16:03:55 +02:00
parent 6ca80b72b0
commit 8bf9fb318b
2 changed files with 3 additions and 1 deletions

View File

@ -191,7 +191,7 @@ create table if not exists `user` (
`uid` int unsigned not null primary key,
`username` char(64) not null unique,
`realname` char(64) default null,
`password` char(48) default null,
`password` char(128) default null,
`domain` char(64) default null,
`dn` char(255) default '*',
`isadmin` tinyint default 0

View File

@ -0,0 +1,2 @@
alter table `user` change column `password` `password` char(128) default null;