Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

1.1

Compare
Choose a tag to compare
@jeromegamez jeromegamez released this 25 Mar 19:10
· 62 commits to master since this release

What's new

  • The default migration user is now configurable by setting the ez_user parameter. If not set, it falls back to admin (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();
}