0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

see: #475 - add domain_admins.id pk autoincrement field

This commit is contained in:
David Goodwin 2021-04-13 21:08:49 +01:00
parent fbdc6ba029
commit bbec16aac1

View File

@ -1935,3 +1935,12 @@ function upgrade_1843() {
# Additional field for fetchmail to allow server with non-standard port number
_db_add_field('fetchmail', 'src_port', "{INT}", 'src_server');
}
/**
* @return void
*/
function upgrade_1844() {
# See:https://github.com/postfixadmin/postfixadmin/issues/475 - add pkey to domain_admins.
_db_add_field('domain_admins', 'id', '{AUTOINCREMENT} {PRIMARY}');
}