├── .gitignore ├── LICENSE ├── MysqlStructSync.php ├── README.md ├── composer.json ├── manuallySelectUpdates.png └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .idea/ 3 | demo/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /MysqlStructSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/MysqlStructSync.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/composer.json -------------------------------------------------------------------------------- /manuallySelectUpdates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/manuallySelectUpdates.png -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDZH-DEV/mysql-struct-sync/HEAD/test.php --------------------------------------------------------------------------------