- Add support for database names (contributed by @jgysland).
- Add explicit support for MySQL identifiers.
- Add support for basic
CREATE TABLE
statements. - (Insert new release notes below this line)
- Add support for
ALTER TABLE .. CHANGE COLUMN
statements (contributed by @jgysland)
- Change the licence from
AGPLv3
toMIT
licence.
- Brought back
HISTORY.rst
. - Add
mysqlparse.parse
function. - Add
six
as a dependency to make writing Py2 and Py3 compatible code easier. - Add support for
ALTER TABLE .. MODIFY [COLUMN]
statements. - Add support for
ALTER TABLE .. DROP *
statements. - Move version string from
setup.py
intomysqlparse
.
- Updated
README.rst
. - Add support for
ALTER TABLE ... ADD INDEX
statements.
- A little tidy up.
- Removed
defaultValue
parse action. - Improved
NULL
handling. - Updated tests to pass.
- Fixed packaging configuration.
- First release with code parsing some of
ALTER TABLE ... ADD COLUMN
statements.