Skip to content

javiereguiluz/migrations

 
 

Repository files navigation

Migrations plugin for CakePHP

Software License Build Status Coverage Status Total Downloads

This is a Database Migrations system for CakePHP 3.

The plugin consists of a CakePHP shell wrapper for the phinx migrations library.

Installation

You can install this plugin into your CakePHP application using composer.

Run the following command

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:

public function bootstrap()
{
    parent::bootstrap();
    $this->addPlugin('Migrations');
}

Prior to 3.6.0

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.

About

CakePHP 3.0 database migrations plugin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%