mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 11:27:40 +08:00
cc05b877a2
first commit acl to github
10 lines
169 B
SQL
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)
|
|
)
|