Releases: OnlineBuddies/Modyllic
Releases · OnlineBuddies/Modyllic
v0.2.41
- Fix bug: Crashes when generating output from an INSERT statement that
references an unknown column.
v0.2.40
- Provide better error messages when the user has insufficient privs to see proc bodies
- Fix invalid index in column lookup when adding implicit indexes for foreign keys
- Serials should be equivalent to the type of BIGINT they generate
v0.2.39
- Raise memory_limit for commandline use of Modyllic (Aria Stewart)
- The schema columns representation changed a while ago but the foreign key add code wasn't updated to match (Rebecca Turner)
v0.2.38
- Fix bug in new PREPARE-WITH feature
- Make modyllic-migrate able to handle mult-result responses as these
are now possible now that we call code from PREPARE-WITH blocks.
v0.2.37
- Fix PEAR URL to match what Github has forced (jackfan.us.kg->github.io)
- Stop emitting the foreign key dance on static data only changes
- Support a full suite of DML as proc bodies (previously we only supported BEGIN and CALL)
- Add experimental support for PREPARE WITH blocks that can be attached to any foreign key or unique constraint.
PREPARE WITH blocks will be executed prior to adding that new contstraint
and should modify the table such that the constraint will pass.
v0.2.36
- Resume disabling foreign key checks until such time as we add PREPARE WITH syntax to constraints
- Stop trying to emit PRIMARY KEY and UNIQUE as field attributes
- If we're dropping a table, don't try to add/remove constraints from it
- Move all index/constraint changes to after other table changes, including static data
- If we're making a table static, truncate before we make any changes to it
v0.2.35
- Defer creating foreign keys until as late as possible
This solves some issues with foreign key constraints and static tables
- Fix modyllic-apply's eating of "general errors" when we try to fetch result sets
v0.2.34
- Fix bug that broke handling of truncated primary keys
- Fix bug that stopped indexes with different truncations from registering as different
v0.2.33
- Fix bug introcued in last version where changing table options resulted in crash
v0.2.32
- For MySQL, drop and create all foreign key constraints on all modified tables