summaryrefslogtreecommitdiffstats
path: root/setup/pbs.sql
diff options
context:
space:
mode:
authorSimon2011-04-25 17:05:08 +0200
committerSimon2011-04-25 17:05:08 +0200
commit3ede38a1c21732fc96e78ee4cef024adf044fe84 (patch)
tree594bc3367e1054205226e9a1e64d8b64228d63b5 /setup/pbs.sql
parentsuspended fix (diff)
downloadpbs2-3ede38a1c21732fc96e78ee4cef024adf044fe84.tar.gz
pbs2-3ede38a1c21732fc96e78ee4cef024adf044fe84.tar.xz
pbs2-3ede38a1c21732fc96e78ee4cef024adf044fe84.zip
sql fix - suspended->suspend
Diffstat (limited to 'setup/pbs.sql')
-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`),