acl/lib_acl_cpp/samples/hsclient/user.sql
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

10 lines
169 B
SQL

use test;
create table user
(
user_id integer not null,
user_name varchar(256) not null,
user_email varchar(256) not null,
primary key(user_id),
index(user_name)
)