micheljonkman/laravel-declarative-schema

1.4.1 2024-08-26 15:48 UTC

This package is auto-updated.

Last update: 2025-03-26 17:18:44 UTC


README

Laravel integration for my declarative-schema package.

Usage

To create a new schema file call the command below.

php artisan make:schema table_name

For more information on how to write schema files, take a look at declarative-schema package.

And in order to migrate them you can either use the normal migrate command:

php artisan migrate

Or use the specific command to migrate schema files.

php artisan migrate:schema

Rollbacks don't do anything for schema files since you can just revert the file to its previous state and migrate again.