ewll / db-bundle
DB Bundle
Installs: 1 584
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.2
- psr/simple-cache: ^1.0
- symfony/cache: ^5
- symfony/form: ^5
- symfony/framework-bundle: ^5
- symfony/translation: ^5
- 2.21.4
- 2.21.3
- 2.21.2
- 2.21.1
- 2.21
- 2.20.1
- 2.20
- 2.19
- 2.18
- 2.17.2
- 2.17.1
- 2.17
- 2.16
- 2.15.1
- 2.15
- 2.14
- 2.13
- 2.12.3
- 2.12.2
- 2.12.1
- 2.12
- 2.11.2
- 2.11.1
- 2.11
- 2.10.3
- 2.10.2
- 2.10.1
- 2.10
- 2.9
- 2.8
- 2.7
- 2.6
- 2.5.1
- 2.5
- 2.4.1
- 2.4
- 2.3.2
- 2.3.1
- 2.3
- 2.2
- 2.1
- 2.0
- dev-master / 1.x-dev
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-2-10-3-cache-fix
This package is auto-updated.
Last update: 2024-10-28 19:21:02 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.