We don't have any mechanism to support ANY columns at the moment. Open question how to deal with that. Options include:
- Ignore the problem entirely
- Add a
sqlite_utils.ANY constant which can be used in create table calls, e.g. db.create_table("t", {"id": int, "name": str, "misc": sqlite_utils.ANY}) - would have to be handled in add_column() and transform() and a bunch of other places too.
- Don't support them in create_table/etc but DO support them in introspection, since that's part of how
transform() works
Originally posted by @simonw in #788 (comment)
Originally posted by @simonw in #788 (comment)