cakephp / phinx

PHP Database Migrations for Everyone
https://phinx.org
MIT License
4.45k stars 895 forks source link

Fix for MySQL 8 DEFAULT_GENERATED extra #2253

Closed cergfix closed 8 months ago

cergfix commented 8 months ago

Fix for MySQL 8 DEFAULT_GENERATED extra handling.

DEFAULT_GENERATED in MySQL 8 appears automatically for columns that have an expression default value (e.g. default date). This is only a cosmetic/informational extra, that should NOT be used for recreating queries (CREATE or ALTER) and/or other database structures.

Fixes https://github.com/cakephp/phinx/issues/2138.