sunary / sqlize

powerful SQL toolkit; offering parsing, building, and migration capabilities.
Other
97 stars 11 forks source link

Detect modify enum type #11

Closed sunary closed 3 years ago

sunary commented 3 years ago

before:

Display  string `sql:"type:ENUM('center','full')"`

after:

Display  string `sql:"type:ENUM('top','bottom','center','full')"`

expected sql:

ALTER TABLE `table_name` MODIFY COLUMN `display` enum('top','bottom','center','full') AFTER `previous_column`;
sunary commented 3 years ago

https://github.com/sunary/sqlize/commit/fd31d2feb95276f28929ba1018223efa16240fa3