├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Xethron │ └── MigrationsGenerator │ ├── Generators │ ├── FieldGenerator.php │ ├── ForeignKeyGenerator.php │ ├── IndexGenerator.php │ └── SchemaGenerator.php │ ├── MigrateGenerateCommand.php │ ├── MigrationsGeneratorServiceProvider.php │ └── Syntax │ ├── AddForeignKeysToTable.php │ ├── AddToTable.php │ ├── DroppedTable.php │ ├── RemoveForeignKeysFromTable.php │ └── Table.php └── tests └── Xethron └── MigrationsGenerator ├── MigrationsGeneratorServiceProviderTest.php └── MigrationsGeneratorTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | report 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Generators/FieldGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Generators/FieldGenerator.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Generators/ForeignKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Generators/ForeignKeyGenerator.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Generators/IndexGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Generators/IndexGenerator.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Generators/SchemaGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Generators/SchemaGenerator.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/MigrateGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/MigrateGenerateCommand.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/MigrationsGeneratorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/MigrationsGeneratorServiceProvider.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Syntax/AddForeignKeysToTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Syntax/AddForeignKeysToTable.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Syntax/AddToTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Syntax/AddToTable.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Syntax/DroppedTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Syntax/DroppedTable.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Syntax/RemoveForeignKeysFromTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Syntax/RemoveForeignKeysFromTable.php -------------------------------------------------------------------------------- /src/Xethron/MigrationsGenerator/Syntax/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/src/Xethron/MigrationsGenerator/Syntax/Table.php -------------------------------------------------------------------------------- /tests/Xethron/MigrationsGenerator/MigrationsGeneratorServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/tests/Xethron/MigrationsGenerator/MigrationsGeneratorServiceProviderTest.php -------------------------------------------------------------------------------- /tests/Xethron/MigrationsGenerator/MigrationsGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xethron/migrations-generator/HEAD/tests/Xethron/MigrationsGenerator/MigrationsGeneratorTest.php --------------------------------------------------------------------------------