An open API service indexing awesome lists of open source software.

https://github.com/marcelod/codeigniter_migration_base_generation

Create a Base Migration File from current DB
https://github.com/marcelod/codeigniter_migration_base_generation

Last synced: 8 months ago
JSON representation

Create a Base Migration File from current DB

Awesome Lists containing this project

README

          

#Create a Base Migration File from current DB

When all goes well it will create a file under migrations called 001_create_base.php under your migrations folder

#To use:

1: Enable migrations and set version to 1;

2: Enable to write migration folder;

3: Copy VpxMigration.php to your library folder (/application/library);

4: In controller:

function make_base(){

$this->load->library('VpxMigration');

// All Tables:

$this->vpxmigration->generate();

//Single Table:

$this->vpxmigration->generate('table');

}