aqueduct
aqueduct copied to clipboard
Allow ORM to specify column name
Like it is possible with mutliple ORM I'd like to customize my column name.
for example :
class User{
@Column(name: 'this_is_my_column')
String username;
}
I'm trying to use Aqueduct with an existing database and this is a crucial feature that seems to be missing, so I guess we're stuck using SQLAlchemy and Python for now :(
There are number of questions on SO asking this feature:
https://stackoverflow.com/questions/61109219/change-naming-strategy-in-aqueduct-orm https://stackoverflow.com/questions/59948133/table-and-column-naming-convention-postgres-dart-aqueduct
And also this issue: https://github.com/stablekernel/aqueduct/issues/807
Wow, this is a deal breaker.
Pretty much of a deal breaker i'd say. Are there any new informations about this?