Add id autoincrement field to log table; ought to fix #89

pull/90/head
David Goodwin 7 years ago
parent 90d3a0ded7
commit 17e347de7f

@ -1722,3 +1722,8 @@ function upgrade_1837_sqlite() {
}
}
/* https://github.com/postfixadmin/postfixadmin/issues/89 */
function upgrade_1838_mysql() {
_db_add_field('log', 'id', '{AUTOINCREMENT} {PRIMARY}' , 'data');
}

Loading…
Cancel
Save