Ensure unified order of 'verb' records

This commit is contained in:
Michael 2020-05-19 05:51:58 +00:00
parent 3cc3bfe531
commit ef3dc72dca
1 changed files with 6 additions and 0 deletions

View File

@ -1004,6 +1004,12 @@ class DBStructure
*/
public static function checkInitialValues()
{
if (self::existsTable('verb') && !DBA::exists('verb', ['id' => 1])) {
foreach (Item::ACTIVITIES as $index => $activity) {
DBA::insert('verb', ['id' => $index + 1, 'name' => $activity], true);
}
}
if (self::existsTable('contact') && !DBA::exists('contact', ['id' => 0])) {
DBA::insert('contact', ['nurl' => '']);
$lastid = DBA::lastInsertId();