This repository has been archived by the owner on May 11, 2018. It is now read-only.
1.1
What's new
- The default migration user is now configurable by setting the
ez_user
parameter. If not set, it falls back toadmin
(User ID 14), which is the standard admin user in eZ Publish - It is now possible to change the migration user during a migration by using the following methods:
public function up(Schema $schema)
{
$this->changeMigrationUser('another_ez_username');
// ...
$this->restoreDefaultMigrationUser();
}