├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── _config.yml ├── bin └── phinx-migrations ├── composer.json └── src └── Migration ├── Adapter ├── Database │ ├── MySqlSchemaAdapter.php │ └── SchemaAdapterInterface.php └── Generator │ ├── PhinxMySqlColumnGenerator.php │ ├── PhinxMySqlColumnOptionGenerator.php │ ├── PhinxMySqlForeignKeyGenerator.php │ ├── PhinxMySqlGenerator.php │ ├── PhinxMySqlIndexGenerator.php │ ├── PhinxMySqlTableOptionGenerator.php │ └── RawPhpValue.php ├── Command └── GenerateCommand.php ├── Generator └── MigrationGenerator.php └── Utility └── ArrayUtil.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/phinx-migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/bin/phinx-migrations -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/composer.json -------------------------------------------------------------------------------- /src/Migration/Adapter/Database/MySqlSchemaAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Database/MySqlSchemaAdapter.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Database/SchemaAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Database/SchemaAdapterInterface.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlColumnGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlColumnGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlColumnOptionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlColumnOptionGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlForeignKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlForeignKeyGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlIndexGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlIndexGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/PhinxMySqlTableOptionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/PhinxMySqlTableOptionGenerator.php -------------------------------------------------------------------------------- /src/Migration/Adapter/Generator/RawPhpValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Adapter/Generator/RawPhpValue.php -------------------------------------------------------------------------------- /src/Migration/Command/GenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Command/GenerateCommand.php -------------------------------------------------------------------------------- /src/Migration/Generator/MigrationGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Generator/MigrationGenerator.php -------------------------------------------------------------------------------- /src/Migration/Utility/ArrayUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odan/phinx-migrations-generator/HEAD/src/Migration/Utility/ArrayUtil.php --------------------------------------------------------------------------------