summaryrefslogtreecommitdiff
path: root/migrate/changeset/databases/mysql.py
Commit message (Collapse)AuthorAgeFilesLines
* Retire github mirror, repo moved to opendevHEADmasterJim Rollenhagen2019-09-261-68/+0
|
* Don't use deprecated / non-functional "force" parameterMike Bayer2019-01-181-2/+1
| | | | | | | | | | | The "force" parameter in SQLAlchemy IdentifierPreparer.quote() has been a no-op since 0.9 in https://github.com/sqlalchemy/sqlalchemy/commit/031ef0807838842a827135dbace760da7aec215e, which was six years ago. In SQLAlchemy 1.3 this parameter will be removed entirely. Bump requirements to 0.9 series here and remove usage of the "force" flag. Change-Id: I4492df2e7d2075fefbf13d6782de11f7d402f6b8
* Use native quote attribute introduced in sqla 0.9Thomas Goirand2014-03-051-1/+5
| | | | | | | | | In SQLA 0.9 there is now a native .quote attribute on many objects. Conditionally use this instead of the old method if the attribute exists, to remove deprecation messages (and prepare for when the other way will be fully removed). Change-Id: I3c5fada13e044c1c4102acc0455226ce1524f2e2
* drop SQLAlchemy < 0.6 compatibility codeJan Dittberner2011-10-281-36/+7
|
* move all exception classes to migrate.exceptionsiElectric2010-09-071-1/+4
|
* fix MySQL failing tests with autoincrementiElectric2010-05-021-4/+6
|
* apply Emil Kroymann's patch for Issue 75emil.kroymann2010-01-071-0/+9
|
* add support for SA 0.6 by Michael BayeriElectric2009-06-291-30/+36
|
* - completely refactored ColumnDelta to extract differences between ↵iElectric2009-06-271-10/+4
| | | | | | | | columns/parameters (also fixes issue #23) - fixed some bugs (passing server_default) on column.alter - updated tests, specially ColumnDelta and column.alter - introduced alter_metadata which can preserve altering existing objects if False (defaults to True) - updated documentation
* updated changeset tests. whole package is finally PEP8. fixed mysql ↵iElectric2009-06-201-24/+26
| | | | tests&bugs. updated docs where apropriate. changeset test coverage almost at 100%
* - refactor migrate.changeset;iElectric2009-06-161-8/+0
| | | | | | | - visitors are refactored to be more unified - constraint module is refactored, CheckConstraint is added - documentation is partialy updated, dialect support table is added (unfinished) - test_constraint was updated NOTE: oracle and mysql were not tested, *may be broken*
* update docs, delete obsolete code in constraintsiElectric2009-06-121-2/+3
|
* use sqlalchemy preparer to do SQL quote formatting. this is a raw change, ↵iElectric2009-06-111-21/+6
| | | | tests are yet to be written
* make migrate.changeset.databases PEP-8 clean and add it to the API docsjan.dittberner2009-01-251-16/+40
|
* most of the tests are now working with nose.percious172008-12-021-2/+16
|
* add support for SA 0.5christian.simms2008-08-281-1/+1
|
* integrated patch by Christian Simms posted at ↵jan.dittberner2008-02-141-0/+1
| | | | | | http://groups.google.com/group/migrate-users/browse_thread/thread/952a2185baf70c4d fix all test cases for sqlalchemy>=0.4 and still works with sqlalchemy>=0.3.10 fixes #9
* moved trunk, branches and tags to project rootjan.dittberner2008-02-061-0/+61
fixes Issue #5