https://github.com/netlogix/netlogix.migrations.neos
Neos package to run Node migrations using Netlogix.Migrations
https://github.com/netlogix/netlogix.migrations.neos
migrations neoscms
Last synced: about 2 months ago
JSON representation
Neos package to run Node migrations using Netlogix.Migrations
- Host: GitHub
- URL: https://github.com/netlogix/netlogix.migrations.neos
- Owner: netlogix
- Created: 2020-09-09T18:17:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T07:21:17.000Z (almost 3 years ago)
- Last Synced: 2025-03-12T13:37:59.767Z (2 months ago)
- Topics: migrations, neoscms
- Language: PHP
- Homepage: https://websolutions.netlogix.de
- Size: 3.91 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netlogix.Migrations.Neos
This package provides a simple abstraction layer to execute Neos node migrations with the [Netlogix.Migrations](https://github.com/netlogix/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
addMigrationVersion('20200909170000');
}}
```