Skip to content

Releases: camcima/php-mysql-diff

Bumped version number

Choose a tag to compare

@camcima camcima released this 02 Nov 06:53
1.2.1

Bumped version number.

Fractional Second Support

Choose a tag to compare

@camcima camcima released this 02 Nov 06:49
34b9969
  • Added fractional seconds support (MySQL 5.7).
  • Fixed a few other issues

Case Insensitive Parsing

Choose a tag to compare

@camcima camcima released this 29 Jun 15:47

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

Display Migration Progress

Choose a tag to compare

@camcima camcima released this 29 Jun 02:37

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

Fixed table comment format

Choose a tag to compare

@camcima camcima released this 02 May 00:10
1.1.6

Fixed table comment format.

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

Choose a tag to compare

@camcima camcima released this 02 May 00:01

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

Choose a tag to compare

@camcima camcima released this 01 May 22:39
1.1.4

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

Fixed issue with double unsigned column type

Choose a tag to compare

@camcima camcima released this 29 Apr 16:39
1.1.3

Included support for double unsigned column type.

Support for COLLATE keyword in table definition.

Choose a tag to compare

@camcima camcima released this 14 Apr 22:34
Merge pull request #2 from sstrigler/master

allow COLLATE keyword at CREATE TABLE

Ignore table partition definitions

Choose a tag to compare

@camcima camcima released this 13 Apr 02:04

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