# migrations-1 **Repository Path**: mirrors_CakeDC/migrations-1 ## Basic Information - **Project Name**: migrations-1 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Migrations plugin for CakePHP [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt) [![Build Status](https://img.shields.io/travis/cakephp/migrations/master.svg?style=flat-square)](https://travis-ci.org/cakephp/migrations) [![Coverage Status](https://img.shields.io/codecov/c/github/cakephp/migrations/master.svg?style=flat-square)](https://codecov.io/github/cakephp/migrations?branch=master) [![Total Downloads](https://img.shields.io/packagist/dt/cakephp/migrations.svg?style=flat-square)](https://packagist.org/packages/cakephp/migrations) This is a Database Migrations system for CakePHP 3. The plugin consists of a CakePHP shell wrapper for the [phinx](http://phinx.org) migrations library. ## Installation You can install this plugin into your CakePHP application using [composer](http://getcomposer.org). Run the following command ```sh composer require cakephp/migrations ``` ## Configuration You can load the plugin using the shell command: ``` bin/cake plugin load Migrations ``` Or you can manually add the loading statement in the **src/Application.php** file of your application: ```php public function bootstrap() { parent::bootstrap(); $this->addPlugin('Migrations'); } ``` Prior to 3.6.0 ```php Plugin::load('Migrations'); ``` Additionally, you will need to configure the ``default`` database configuration in your **config/app.php** file. ## Documentation Full documentation of the plugin can be found on the [CakePHP Cookbook](http://book.cakephp.org/3.0/en/migrations.html).