Closed
Description
Migrated issue, originally created by Michael Bayer (@zzzeek)
op.create_index() only accepts string column names. Particularly with autogenerate and issue #197, we need to be able to put expressions in here without needing a Column object lying around. So let's allow text():
op.create_index("foo", "table", text("lower('x')"), text("lower('y')"))