Fixes #1509: The SQL for creating Postgres RBAC tables is incorrect

This commit is contained in:
Qiang Xue
2013-12-13 21:37:00 -05:00
parent 63640db65c
commit 35c931ed40
2 changed files with 4 additions and 2 deletions

View File

@ -20,10 +20,11 @@ create table "tbl_auth_item"
"description" text,
"biz_rule" text,
"data" text,
primary key ("name"),
key "type" ("type")
primary key ("name")
);
create index tbl_auth_item_type_idx on "tbl_auth_item" ("type");
create table "tbl_auth_item_child"
(
"parent" varchar(64) not null,