micheljonkman / declarative-schema
1.5.0
2025-01-20 16:30 UTC
Requires
- php: ^8.2
- doctrine/dbal: ^4.0.1
- jawira/case-converter: ^3.5.0
- php-di/php-di: ^7.0.6
- symfony/console: ^6.0|^7.0
This package is auto-updated.
Last update: 2025-03-20 16:59:40 UTC
README
Uses doctrine/dbal to manage a declarative schema approach.
Usage
This package has only been tested on MySQL but might work for other databases too.
Create a schema.config.php
file in the directory where your vendor
folder is.
Go to examples to find an example of this file.
To create a migration use:
php vendor/bin/schema make:schema table_name
The DBAL docs provide documentation on how to create new columns and indexes. Some Laravel like methods have also been added for ease of use.
For an example schema file go to examples.
Then you can call the following command to run the changes on the database.
php vendor/bin/schema migrate:schema