Major update Now supports table indexes, table options for each database type and table data.
fk - uses link table and numbering, table / columns had potential to be too long
This is a utility that writes the create table statement for migrations. The table(s), indexes, foreign keys must already exist.
Supports
- MySQL
- MsSQL
- PgSQL
- SQLite
It automatically writes out all:
- tables
- columns
- column types
- column defaults
- primary keys
- foreign key
- indexes
- Table data
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-source "c006/yii2-migration-utility" "dev-master"
or add
"c006/yii2-migration-utility": "dev-master"
to the require section of your composer.json
file.
Update either config/web.php (basic) or config/main.php (advanced)
'modules' => [
...
...
...
'utility' => [
'class' => 'c006\utility\migration\Module',
],
],
The tables must already exist in website schema.
Demo: http://demo.c006.us
###http://[Your_Domain]/utility###
or
###http://[Your_Domain]/?r=/utility###
- Table options per database type
- Table indexes
- Table data
Please provide any helpful feedback or requests.
Thanks.