drop mail delivered flag now that queue is implemented

This commit is contained in:
Friendika 2010-11-23 16:08:48 -08:00
parent 15f011b34c
commit 9be4b3482e
5 changed files with 7 additions and 23 deletions

View file

@ -176,3 +176,8 @@ function update_1018() {
`content` MEDIUMTEXT NOT NULL
) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
}
function update_1019() {
q("ALTER TABLE `mail` DROP `delivered`");
// leaving open for more updates as this isn't critical enough to roll the build number
}