Added 'user_id' (created by) and 'create_date' columns to 'project_group' table.

This commit is contained in:
Dmitry Khomutov 2017-10-16 21:59:59 +07:00
commit 7382df7f6d
5 changed files with 131 additions and 20 deletions

View file

@ -526,6 +526,8 @@ class InstallCommand extends Command
$group = new ProjectGroup();
$group->setTitle('Projects');
$group->setCreateDate(new \DateTime());
$group->setUserId(0);
Factory::getStore('ProjectGroup')->save($group);