acl/lib_fiber/samples/mysql/db.sql
2016-06-30 22:20:30 +08:00

14 lines
504 B
SQL

create table group_tbl
( group_name varchar(128) not null
uvip_tbl varchar(32) not null default 'uvip_tbl',
access_tbl varchar(32) not null default 'access_tbl',
access_week_tbl varchar(32) not null default 'access_week_tbl',
access_month_tbl varchar(32) not null default 'access_month_tbl',
update_date date not null default '1970-1-1',
disable integer not null default 0,
add_by_hand integer not null default 0,
class_level integer not null default 0,
primary key(group_name, class_level)
);