summaryrefslogtreecommitdiffstats
path: root/setup
diff options
context:
space:
mode:
Diffstat (limited to 'setup')
-rw-r--r--setup/pbs.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup/pbs.sql b/setup/pbs.sql
index aaab3a6..7fea674 100644
--- a/setup/pbs.sql
+++ b/setup/pbs.sql
@@ -82,7 +82,7 @@ CREATE TABLE IF NOT EXISTS `pbs_person` (
`password` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`password_salt` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`loginpassword` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
- `suspended` tinyint(1) NOT NULL,
+ `suspend` tinyint(1) NOT NULL,
PRIMARY KEY (`personID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
@@ -105,7 +105,7 @@ CREATE TABLE IF NOT EXISTS `pbs_membership` (
`groupID` int(11) NOT NULL,
`roleID` int(11) NOT NULL,
`personID` int(11) NOT NULL,
- `suspended` tinyint(1) NOT NULL,
+ `suspend` tinyint(1) NOT NULL,
`apikey` varchar(30),
PRIMARY KEY (`membershipID`),
KEY `groupID` (`groupID`),