Is there a way to define a column (primary key) as uuid in sqlalchemy if using postgresql?
|
2
|
|
|
|
|
|
You could try writing a custom type, for instance:
|
||
|
|
|
|
In addition to Florian's answer, there's also this blog entry. It looks similar except that it subclasses |
||
|
|
|
|
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. |
||
|
|
