diff options
| author | Nay <dnpd.dd@gmail.com> | 2013-03-11 14:46:38 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2013-03-11 14:46:38 +0000 |
| commit | 9ae9277817ac158ea3f65761d2785d148016a66b (patch) | |
| tree | fc021070f5c009ccdc1dea7b18de85c096ab7758 | |
| parent | cdb77f3ea147384fa0bee4f04bd96d68e5cf7531 (diff) | |
DB/Auth/Schema: Change secId from int(10)u to tinyint(3)u in rbac_security_level_groups
Closes #9403
| -rw-r--r-- | sql/updates/auth/2013_03_11_00_auth_rbac_security_level_groups.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/auth/2013_03_11_00_auth_rbac_security_level_groups.sql b/sql/updates/auth/2013_03_11_00_auth_rbac_security_level_groups.sql new file mode 100644 index 00000000000..533d3f7a196 --- /dev/null +++ b/sql/updates/auth/2013_03_11_00_auth_rbac_security_level_groups.sql @@ -0,0 +1,2 @@ +-- change secId from int(10)u to tinyint(3)u +ALTER TABLE `rbac_security_level_groups` CHANGE `secId` `secId` tinyint(3) unsigned NOT NULL COMMENT 'Security Level id'; |
