phplucidframe / bare-migration
A simple PHP command line tool to generate CodeIgniter bare migration file.
v1.1.0
2016-11-04 15:14 UTC
Requires
- php: >=5.3
This package is auto-updated.
Last update: 2024-10-29 04:53:09 UTC
README
A simple PHP command line tool to generate a CodeIgniter blank migration class file. It is very similiar to doctrine:migrations:generate
of Symfony DoctrineMigrationsBundle.
Installation using Composer
composer require phplucidframe/bare-migration
or
php composer.phar require phplucidframe/bare-migration
Installation without Composer
If you don't want to use Composer, you can download the zip file and unzip it to your project vendor folder. However, make sure the directory path is /vendor/phplucidframe/bare-migration/
where the script file ci
should exist.
Example Usage
$ php vendor/phplucidframe/bare-migration/ci migration:bare add_new_post_table
OR, you can also CD to the package directory.
$ cd vendor/phplucidframe/bare-migration
$ php ci migration:bare add_new_post_table
The above example will create a new migration file application/migrations/{YmdHis}_add_new_post_table.php
where {YmdHis}
would be the current timestamp.