ewll / db-bundle
DB Bundle
2.21.4
2020-09-28 10:33 UTC
Requires
- php: ^7.2
- psr/simple-cache: ^1.0
- symfony/cache: ^5
- symfony/form: ^5
- symfony/framework-bundle: ^5
- symfony/translation: ^5
This package is auto-updated.
Last update: 2026-05-28 22:46:50 UTC
README
Migrations
Create class App\Migration\MigrationYmdHis implementing Ewll\DBBundle\Migration\MigrationInterface.
Put your migration up sql code into ::up() method migrationd down sql code into ::down() method and description into ::getDescription().
Commands
ewll:db:migrate- List migrations.--all- Migrate all.--up YmdHis- Migrate up specific one.--down YmdHis- Migrate down specific one.
ewll:db:entity-cache- Create entity cache. Use it after entity creation\updation.