Add MySQL field for owner_password

This commit is contained in:
Daniel Berteaud 2014-05-13 18:07:59 +02:00
parent eaf20b6a13
commit 7a7ee8603b
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ CREATE TABLE `rooms` (
`activity_timestamp` int(20) DEFAULT NULL,
`locked` tinyint(1) DEFAULT '0',
`join_password` varchar(160) DEFAULT NULL,
`owner_password` varchar(160) DEFAULT NULL,
`token` varchar(160) DEFAULT NULL,
`realm` varchar(160) DEFAULT NULL,
`persistent` tinyint(1) DEFAULT '0',

1
docs/upgrade.mysql Normal file
View File

@ -0,0 +1 @@
ALTER TABLE rooms add COLUMN `owner_password` varchar(160) DEFAULT NULL after `join_password`;