Skip to content
This repository was archived by the owner on Apr 29, 2020. It is now read-only.

MigrationMakeCommand

Ferdinand Frank edited this page Oct 9, 2017 · 1 revision

Creates a new Laravel migration file.

Usage

php artisan make:migration [options] <name>

Arguments

Argument Description Note
name The name of the migration Required

Options

Option Description Default
--create[=CREATE] The table to be created
--table[=TABLE] The table to migrate
--path[=PATH] The location where the migration file should be created.
-h, --help Display a help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
--env[=ENV] The environment the command should run under
-v|vv|vvv, --verbose Increase the verbosity of messages

Stubs

This table gives you an overview when which stub file is used as a template to create the php file.

Stub Command Restriction
migration.create.stub Used when option --create[=CREATE] is provided
migration.update.stub Used when option --table[=TABLE] is provided
migration.blank.stub Used when none of the above options is provided
Clone this wiki locally