Releases: camcima/php-mysql-diff
Releases · camcima/php-mysql-diff
Bumped version number
Fractional Second Support
- Added fractional seconds support (MySQL 5.7).
- Fixed a few other issues
Case Insensitive Parsing
The parser is now able to parse scripts in a case-insensitive manner.
Display Migration Progress
Use the -p
option in the migrate command to display the progress of the migration when the script is running.
Fixed table comment format
1.1.6 Fixed table comment format.
Support for table comments and special characters inside table and column comments
Additional feature: table options (ENGINE, AUTO_INCREMENT, COLLATE, ...) can now be in any order.
Added support for IF NOT EXISTS and key lengths in primary key definition
1.1.4 Added support for primary key lengths and "IF NOT EXISTS" clause in t…
Fixed issue with double unsigned column type
1.1.3 Included support for double unsigned column type.
Support for COLLATE keyword in table definition.
Merge pull request #2 from sstrigler/master allow COLLATE keyword at CREATE TABLE
Ignore table partition definitions
Ignoring this:
/*!50100 PARTITION BY RANGE (id_export)
(PARTITION p0 VALUES LESS THAN (1000) ENGINE = InnoDB,
PARTITION p1 VALUES LESS THAN (2000) ENGINE = InnoDB,
PARTITION p2 VALUES LESS THAN (3000) ENGINE = InnoDB,
PARTITION p3 VALUES LESS THAN (4000) ENGINE = InnoDB,
PARTITION p4 VALUES LESS THAN MAXVALUE ENGINE = InnoDB) */;