Is there a way to define a column (primary key) as uuid in sqlalchemy if using postgresql?
|
You could try writing a custom type, for instance:
|
|||||
|
|
Unless I'm missing something the above solution will work if the underlying database has a UUID type. If it doesn't, you would likely get errors when the table is created. The solution I came up with I was targeting MSSqlServer originally and then went MySql in the end, so I think my solution is a little more flexible as it seems to work fine on mysql and sqlite. Haven't bothered checking postgres yet. |
|||||||||
|
|
See also the recipe for Backend-agnostic GUID Type in the SQLAlchemy documentation for column types. |
|||
|
|
|
In addition to Florian's answer, there's also this blog entry. It looks similar except that it subclasses |
|||
|
|
|
Unfortunately Backend-agnostic GUID Type from the SQLAlchemy documentation for column types does not seem to work for primary keys in SQLite database engines. Not quite as ecumenical as I was hoping for. |
|||
|
|