Initial revision

This commit is contained in:
Jeremy Newman
2004-03-15 16:22:00 +00:00
commit 8f28ae10c4
122 changed files with 8116 additions and 0 deletions

19
tables/user_list.sql Normal file
View File

@@ -0,0 +1,19 @@
create table user_list (
stamp timestamp not null,
userid int not null auto_increment,
username text not null,
password text not null,
realname text not null,
email text not null,
created datetime not null,
status int(4),
perm int(4),
unique key(userid),
unique(username(12))
);
insert into user_list values (NOW(), 0, 'int', password('testing'), 'Charles Loep',
'charles@codeweavers.com', NOW(), 0, 0xffffffff);
update user_list set userid = 1000 where username = 'int';