Re: [sqlalchemy] Is it possible for alembic or other migration tool to handle case sensitivity or insensitivity across database engines

2012-12-06 Thread Michael Bayer
On Dec 6, 2012, at 3:17 PM, junepeach wrote: > > For case insensitive columns: > MySQL - use utf8_general_ci > SQLite - use NOCASE collation > > > > Can migration tool handle that for most databases or it should be better done > in application code? sure: def character_type(length):

[sqlalchemy] Is it possible for alembic or other migration tool to handle case sensitivity or insensitivity across database engines

2012-12-06 Thread junepeach
For case insensitive columns: MySQL - use utf8_general_ci SQLite - use NOCASE collation Can migration tool handle that for most databases or it should be better done in application code? Thanks and best regards, -- You received this message because you are subscribed to the Google Group