Migrations are PHP classes that make one-time changes to the system.
For the most part, migrations in Craft work similarly to Yii’s implementation, but unlike Yii, Craft manages three different types of migrations:
- App migrations – Craft’s own internal migrations.
- Plugin migrations – Each installed plugin has its own migration track.
- Content migrations – Your Craft project itself can have migrations, too.
::: tip If your Craft install is running from a Vagrant box, you will need to SSH into the box to run these commands. :::
To create a new migration for your plugin or project, open up your terminal and go to your Craft project:
cd /path/to/project
Then run the following command to generate a new migration file for your plugin or project (replacing <migration_name>
with your migration’s name in snake_case, and <plugin-handle>
with your plugin handle in kebab-case):
::: code
./craft migrate/create <migration_name> --plugin=<plugin-handle>
./craft migrate/create <migration_name>
:::
Enter yes
at the prompt, and a new migration file will be created for you. You can find it at the file path output by the command.
If this is a plugin migration, increase your plugin’s schema version, so Craft knows to check for new plugin migrations as people update to your new version.
Migration classes contain methods: safeUp() and safeDown(). safeUp()
is run when your migration is applied, and safeDown()
is run when your migration is reverted.
::: tip
You can usually ignore the safeDown()
method, as Craft doesn’t have a way to revert migrations from the control panel.
:::
You have full access to Craft’s API from your safeUp()
method, but plugin migrations should try to avoid calling the plugin’s own API here. As your plugin’s database schema changes over time, so will your API’s assumptions about the schema. If an old migration calls a service method that relies on database changes that haven’t been applied yet, it will result in a SQL error. So in general you should execute all SQL queries directly from your own migration class. It may feel like you’re duplicating code, but it will be more future-proof.
Your migration class extends api:craft\db\Migration, which provides several methods for working with the database. It’s better to use these than their api:craft\db\Command counterparts, because the migration methods are both simpler to use, and they’ll output a status message to the terminal for you.
// Bad:
$this->db->createCommand()
->insert('{{%tablename}}', $rows)
->execute();
// Good:
$this->insert('{{%tablename}}', $rows);
::: warning
The api:yii\db\Migration::insert(), batchInsert(), and update() migration methods will automatically insert/update data in the dateCreated
, dateUpdated
, uid
table columns in addition to whatever you specified in the $columns
argument. If the table you’re working with does’t have those columns, make sure you pass false
to the $includeAuditColumns
argument so you don’t get a SQL error.
:::
::: tip api:craft\db\Migration doesn’t have a method for selecting data, so you will still need to go through Yii’s Query Builder for that.
use craft\db\Query;
$result = (new Query())
// ...
->all();
:::
If you want to log any messages in your migration code, echo it out rather than calling Craft::info():
echo " > some note\n";
If the migration is being run from a console request, this will ensure the message is seen by whoever is executing the migration, as the message will be output into the terminal. If it’s a web request, Craft will capture it and log it to storage/logs/
just as if you had used Craft::info()
.
You can have Craft apply your new migration from the terminal:
::: code
./craft migrate/up --plugin=<plugin-handle>
./craft migrate/up
:::
Or you can have Craft apply all new migrations across all migration tracks:
./craft migrate/all
Craft will also check for new plugin migrations on control panel requests, for any plugins that have a new schema version, and content migrations can be applied from the Control Panel by going to Utilities → Migrations.
Plugins can have a special “Install” migration which handles the installation and uninstallation of the plugin. Install migrations live at migrations/Install.php
alongside normal migrations. They should follow this template:
<?php
namespace ns\prefix\migrations;
use craft\db\Migration;
class Install extends Migration
{
public function safeUp()
{
// ...
}
public function safeDown()
{
// ...
}
}
You can give your plugin an install migration with the migrate/create
command if you pass the migration name “install
”:
./craft migrate/create install --plugin=<plugin-handle>
When a plugin has an Install migration, its safeUp()
method will be called when the plugin is installed, and its safeDown()
method will be called when the plugin is uninstalled (invoked by the plugin’s install() and uninstall() methods).
::: tip
It is not a plugin’s responsibility to manage its row in the plugins
database table. Craft takes care of that for you.
:::
If you want to add things to the project config on install, either directly or via your plugin’s API, be sure to only do that if the incoming project.yaml
file doesn’t already have a record of your plugin.
public function safeUp()
{
// ...
// Don't make the same config changes twice
if (Craft::$app->projectConfig->get('plugins.<plugin-handle>', true) === null) {
// Make the config changes here...
}
}
That’s because there’s a chance that your plugin is being installed as part of a project config sync, and if its Install migration were to make any project config changes of its own, they would overwrite all of the incoming changes from project.yaml
.