├── .gitignore ├── .semver ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Config └── Migration │ ├── 001_init_migrations.php │ ├── 002_convert_version_to_class_names.php │ └── 003_increase_class_name_length.php ├── Console └── Command │ ├── MigrationShell.php │ ├── MigrationsShell.php │ └── Templates │ └── migration.ctp ├── Docs ├── Documentation │ ├── Examples.md │ ├── Generate-Migrations-Without-DB-Interaction.md │ ├── Installation.md │ ├── Migrations.md │ ├── Overview.md │ └── Pre-Migration-Checks.md ├── Home.md └── Tutorials │ └── Quick-Start.md ├── LICENSE.txt ├── Lib ├── CakeMigration.php ├── Migration │ ├── PrecheckBase.php │ ├── PrecheckCondition.php │ └── PrecheckException.php ├── MigrationVersion.php └── Panel │ └── MigrationsPanel.php ├── Locale ├── deu │ └── LC_MESSAGES │ │ └── migrations.po ├── fre │ └── LC_MESSAGES │ │ └── migrations.po ├── ita │ └── LC_MESSAGES │ │ └── migrations.po ├── migrations.pot ├── por │ └── LC_MESSAGES │ │ └── migrations.po └── spa │ └── LC_MESSAGES │ └── migrations.po ├── Model └── SchemaMigration.php ├── README.md ├── Test ├── Case │ ├── AllMigrationsTest.php │ ├── Console │ │ └── Command │ │ │ └── MigrationShellTest.php │ └── Lib │ │ ├── Migration │ │ └── PrecheckConditionTest.php │ │ ├── MigrationVersionTest.php │ │ └── Model │ │ └── CakeMigrationTest.php ├── Fixture │ ├── SchemaMigrationsFixture.php │ ├── test_migration.txt │ ├── test_migration_add_fields_from_cli.txt │ ├── test_migration_create_table_from_cli.txt │ ├── test_migration_drop_table_from_cli.txt │ └── test_migration_remove_fields_from_cli.txt └── test_app │ └── Plugin │ ├── TestMigrationPlugin │ └── Config │ │ ├── Migration │ │ ├── 001_schema_dump.php │ │ ├── 002_another_migration_plugin_test_migration.php │ │ ├── blank_file.php │ │ └── map.php │ │ └── Schema │ │ └── Schema.php │ ├── TestMigrationPlugin2 │ └── empty │ ├── TestMigrationPlugin3 │ └── Config │ │ └── Migration │ │ └── map.php │ └── TestMigrationPlugin4 │ └── Config │ └── Schema │ └── schema.php ├── View └── Elements │ └── migrations_panel.ctp └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/.gitignore -------------------------------------------------------------------------------- /.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/.semver -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Config/Migration/001_init_migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Config/Migration/001_init_migrations.php -------------------------------------------------------------------------------- /Config/Migration/002_convert_version_to_class_names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Config/Migration/002_convert_version_to_class_names.php -------------------------------------------------------------------------------- /Config/Migration/003_increase_class_name_length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Config/Migration/003_increase_class_name_length.php -------------------------------------------------------------------------------- /Console/Command/MigrationShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Console/Command/MigrationShell.php -------------------------------------------------------------------------------- /Console/Command/MigrationsShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Console/Command/MigrationsShell.php -------------------------------------------------------------------------------- /Console/Command/Templates/migration.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Console/Command/Templates/migration.ctp -------------------------------------------------------------------------------- /Docs/Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Examples.md -------------------------------------------------------------------------------- /Docs/Documentation/Generate-Migrations-Without-DB-Interaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Generate-Migrations-Without-DB-Interaction.md -------------------------------------------------------------------------------- /Docs/Documentation/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Installation.md -------------------------------------------------------------------------------- /Docs/Documentation/Migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Migrations.md -------------------------------------------------------------------------------- /Docs/Documentation/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Overview.md -------------------------------------------------------------------------------- /Docs/Documentation/Pre-Migration-Checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Documentation/Pre-Migration-Checks.md -------------------------------------------------------------------------------- /Docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Home.md -------------------------------------------------------------------------------- /Docs/Tutorials/Quick-Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Docs/Tutorials/Quick-Start.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lib/CakeMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/CakeMigration.php -------------------------------------------------------------------------------- /Lib/Migration/PrecheckBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/Migration/PrecheckBase.php -------------------------------------------------------------------------------- /Lib/Migration/PrecheckCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/Migration/PrecheckCondition.php -------------------------------------------------------------------------------- /Lib/Migration/PrecheckException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/Migration/PrecheckException.php -------------------------------------------------------------------------------- /Lib/MigrationVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/MigrationVersion.php -------------------------------------------------------------------------------- /Lib/Panel/MigrationsPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Lib/Panel/MigrationsPanel.php -------------------------------------------------------------------------------- /Locale/deu/LC_MESSAGES/migrations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/deu/LC_MESSAGES/migrations.po -------------------------------------------------------------------------------- /Locale/fre/LC_MESSAGES/migrations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/fre/LC_MESSAGES/migrations.po -------------------------------------------------------------------------------- /Locale/ita/LC_MESSAGES/migrations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/ita/LC_MESSAGES/migrations.po -------------------------------------------------------------------------------- /Locale/migrations.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/migrations.pot -------------------------------------------------------------------------------- /Locale/por/LC_MESSAGES/migrations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/por/LC_MESSAGES/migrations.po -------------------------------------------------------------------------------- /Locale/spa/LC_MESSAGES/migrations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Locale/spa/LC_MESSAGES/migrations.po -------------------------------------------------------------------------------- /Model/SchemaMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Model/SchemaMigration.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/README.md -------------------------------------------------------------------------------- /Test/Case/AllMigrationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Case/AllMigrationsTest.php -------------------------------------------------------------------------------- /Test/Case/Console/Command/MigrationShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Case/Console/Command/MigrationShellTest.php -------------------------------------------------------------------------------- /Test/Case/Lib/Migration/PrecheckConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Case/Lib/Migration/PrecheckConditionTest.php -------------------------------------------------------------------------------- /Test/Case/Lib/MigrationVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Case/Lib/MigrationVersionTest.php -------------------------------------------------------------------------------- /Test/Case/Lib/Model/CakeMigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Case/Lib/Model/CakeMigrationTest.php -------------------------------------------------------------------------------- /Test/Fixture/SchemaMigrationsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/SchemaMigrationsFixture.php -------------------------------------------------------------------------------- /Test/Fixture/test_migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/test_migration.txt -------------------------------------------------------------------------------- /Test/Fixture/test_migration_add_fields_from_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/test_migration_add_fields_from_cli.txt -------------------------------------------------------------------------------- /Test/Fixture/test_migration_create_table_from_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/test_migration_create_table_from_cli.txt -------------------------------------------------------------------------------- /Test/Fixture/test_migration_drop_table_from_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/test_migration_drop_table_from_cli.txt -------------------------------------------------------------------------------- /Test/Fixture/test_migration_remove_fields_from_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/Fixture/test_migration_remove_fields_from_cli.txt -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/001_schema_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/001_schema_dump.php -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/002_another_migration_plugin_test_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/002_another_migration_plugin_test_migration.php -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/blank_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/blank_file.php -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/test_app/Plugin/TestMigrationPlugin/Config/Migration/map.php -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin/Config/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/migrations/HEAD/Test/test_app/Plugin/TestMigrationPlugin/Config/Schema/Schema.php -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin2/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Test/test_app/Plugin/TestMigrationPlugin3/Config/Migration/map.php: -------------------------------------------------------------------------------- 1 |