Commit 42b36476 authored by ma's avatar ma
parents e1a9b743 2bbf70a3
...@@ -3,6 +3,7 @@ ALTER TABLE `user` ...@@ -3,6 +3,7 @@ ALTER TABLE `user`
ADD COLUMN `parent` int(11) NULL COMMENT '父账号标识,空则表示超管,一级' AFTER `notify`, ADD COLUMN `parent` int(11) NULL COMMENT '父账号标识,空则表示超管,一级' AFTER `notify`,
ADD COLUMN `level` int(1) NULL COMMENT '账号等级(共有三级),空则表示二级' AFTER `parent`; ADD COLUMN `level` int(1) NULL COMMENT '账号等级(共有三级),空则表示二级' AFTER `parent`;
DROP TABLE IF EXISTS `permission`;
CREATE TABLE `permission` CREATE TABLE `permission`
( (
`id` int(10) NOT NULL AUTO_INCREMENT, `id` int(10) NOT NULL AUTO_INCREMENT,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment