├── .gitignore ├── LICENSE ├── README.md ├── config.php.sample ├── migrate.php └── print.php /.gitignore: -------------------------------------------------------------------------------- 1 | .version 2 | config.php 3 | migrations/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennberg/php-mysql-migrate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennberg/php-mysql-migrate/HEAD/README.md -------------------------------------------------------------------------------- /config.php.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennberg/php-mysql-migrate/HEAD/config.php.sample -------------------------------------------------------------------------------- /migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennberg/php-mysql-migrate/HEAD/migrate.php -------------------------------------------------------------------------------- /print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennberg/php-mysql-migrate/HEAD/print.php --------------------------------------------------------------------------------