We now support real foreign keys

This commit is contained in:
Michael 2020-05-10 14:55:03 +00:00
parent b2ce9601da
commit 7f55e1b2bc
3 changed files with 159 additions and 24 deletions

View file

@ -431,3 +431,29 @@ function update_1347()
return Update::SUCCESS;
}
function pre_update_1348()
{
DBA::insert('contact', ['nurl' => '']);
DBA::update('contact', ['id' => 0], ['id' => DBA::lastInsertId()]);
// The tables "permissionset" and "tag" could or could not exist during the update.
// This depends upon the previous version. Depending upon this situation we have to add
// the "0" values before adding the foreign keys - or after would be sufficient.
update_1348();
}
function update_1348()
{
// Insert a permissionset with id=0
// Setting it to -1 and then changing the value to 0 tricks the auto increment
DBA::insert('permissionset', ['allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '']);
DBA::update('permissionset', ['id' => 0], ['id' => DBA::lastInsertId()]);
DBA::insert('tag', ['name' => '']);
DBA::update('tag', ['id' => 0], ['id' => DBA::lastInsertId()]);
// to-do: Tag / contact
return Update::SUCCESS;
}