Add a message field for invitations reponse

This commit is contained in:
Daniel Berteaud 2014-05-27 23:25:44 +02:00
parent d597d4a790
commit 47a67681f9
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ CREATE TABLE `invitations` (
`token` varchar(160) NOT NULL,
`from` varchar(60) NOT NULL,
`response` varchar(20) DEFAULT NULL,
`message` text DEFAULT NULL,
`processed` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`,`email`,`from`)
);

View File

@ -13,6 +13,7 @@ CREATE TABLE IF NOT EXISTS `invitations` (
`token` varchar(160) NOT NULL,
`from` varchar(60) NOT NULL,
`response` varchar(20) DEFAULT NULL,
`message` text DEFAULT NULL,
`processed` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`,`email`,`from`)
);