-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add command /rmplugin permission group add permission [Group name] [P…
…ermission name]. #9
- Loading branch information
Showing
5 changed files
with
202 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS `&permission_allocate` ( | ||
`id` BIGINT(20) AUTO_INCREMENT, | ||
`parent_id` BIGINT(20) NOT NULL, | ||
`group_id` BIGINT(20) NOT NULL, | ||
`permission_id` BIGINT(20) NOT NULL, | ||
`clazz` INT(3) NOT NULL, | ||
`negate` TINYINT(1) NOT NULL DEFAULT 0, | ||
PRIMARY KEY(`id`), | ||
UNIQUE KEY(`parent_id`, `permission_id`) | ||
UNIQUE KEY(`group_id`, `permission_id`) | ||
) CHARACTER SET utf8 COLLATE utf8_unicode_ci; |