Work with Forge schema primitives and database migrations. Use when defining schema behavior, generating migrations, applying or rolling back migrations, or validating migration files.
Use schema primitives to define models and manage database changes with the migration system.
forge makemigrations <name> --auto.forge migrate and check status with forge migrate status.forge migrate show.forge migrate lint and --verbose when debugging.forge migrate down 1 or apply to a version with .forge migrate up <n>forge migrate fake or --fake-initial for existing databases.migrations/ and follow *_*.up.sql and *_*.down.sql naming.