This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/user_list.sql

21 lines
543 B
MySQL
Raw Normal View History

use apidb;
drop table if exists user_list;
2004-03-15 16:22:00 +00:00
create table user_list (
stamp timestamp not null,
userid int not null auto_increment,
password text not null,
realname text not null,
email varchar(255) not null,
created datetime not null,
CVSrelease text,
unique key(userid),
unique(email)
2004-03-15 16:22:00 +00:00
);
insert into user_list values (NOW(), 0, password('testing'), 'Administrator',
'Admin@localhost', NOW(), 0);
update user_list set userid = 1000 where email = 'Admin@localhost';
2004-03-15 16:22:00 +00:00