I have some of my columns defined as Column('foo', Unicode). This
worked fine with MySQL, but a change made in r4705 appears to have
broken this. Prior to 4705, that would generate a TEXT column in the
create table. This was switched to just VARCHAR.MySQL 5.0.45 does not accept VARCHAR without a length, and from what I see in the MySQL docs, this is the case all the way through MySQL 6. I have SQLAlchemy generate my tables and I also have an sqlalchemy- migrate migration in place to create a new table, which is how I spotted this. Am I missing something, or is this a bug? Thanks, Kevin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
