netlogix / migrations-neos
Custom neos migrations
Installs: 9 494
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 0
Type:neos-package
Requires
- neos/neos: ^5.3 || ^7.3 || ^8.0
- netlogix/migrations: ^1.2 || ^2.0
This package is auto-updated.
Last update: 2024-10-24 12:51:31 UTC
README
This package provides a simple abstraction layer to execute Neos node migrations with the Netlogix.Migrations package.
Usage
Simply create a new Migration file that extends Netlogix\Migrations\Neos\Domain\Migration\NodeMigration
, then use $this->addMigrationVersion('...')
to add your Node migration.
<?php declare(strict_types=1); namespace Netlogix\Migrations\Persistence\Migrations; use Netlogix\Migrations\Neos\Domain\Migration\NodeMigration; class Version20200909170000 extends NodeMigration { public function up(): void { $this->addMigrationVersion('20200909170000'); } }