I don't know if this is a real "bug" of this module or a bad design choice in framework.
The ID column is serial8 which is a bigint (64bit).
All other ID columns (has_one, many_many) are integers (32bit).
I think instead of using DBInt for many_many and DBPolymorphicForeignKey they should use DBForeignKey internally, this would allow to use a custom schema for foreign keys.
I don't know if this is a real "bug" of this module or a bad design choice in framework.
The ID column is
serial8which is abigint(64bit).All other ID columns (has_one, many_many) are integers (32bit).
I think instead of using
DBIntfor many_many andDBPolymorphicForeignKeythey should useDBForeignKeyinternally, this would allow to use a custom schema for foreign keys.