Skip to content

Releases: camcima/php-mysql-diff

Bumped version number

02 Nov 06:53
Compare
Choose a tag to compare
1.2.1

Bumped version number.

Fractional Second Support

02 Nov 06:49
34b9969
Compare
Choose a tag to compare
  • Added fractional seconds support (MySQL 5.7).
  • Fixed a few other issues

Case Insensitive Parsing

29 Jun 15:47
Compare
Choose a tag to compare

The parser is now able to parse scripts in a case-insensitive manner.

Display Migration Progress

29 Jun 02:37
Compare
Choose a tag to compare

Use the -p option in the migrate command to display the progress of the migration when the script is running.

Fixed table comment format

02 May 00:10
Compare
Choose a tag to compare
1.1.6

Fixed table comment format.

Support for table comments and special characters inside table and column comments

02 May 00:01
Compare
Choose a tag to compare

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

01 May 22:39
Compare
Choose a tag to compare
1.1.4

Added support for primary key lengths and "IF NOT EXISTS" clause in t…

Fixed issue with double unsigned column type

29 Apr 16:39
Compare
Choose a tag to compare
1.1.3

Included support for double unsigned column type.

Support for COLLATE keyword in table definition.

14 Apr 22:34
Compare
Choose a tag to compare
Merge pull request #2 from sstrigler/master

allow COLLATE keyword at CREATE TABLE

Ignore table partition definitions

13 Apr 02:04
Compare
Choose a tag to compare

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) */;