stablekernel / aqueduct

Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.
https://aqueduct.io
BSD 2-Clause "Simplified" License
2.42k stars 280 forks source link

Allow ORM to specify column name #693

Open axellebot opened 5 years ago

axellebot commented 5 years ago

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;
}
Klikini commented 4 years ago

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 :(

agordeev commented 4 years ago

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

kevinelliott commented 3 years ago

Wow, this is a deal breaker.

JanFeld commented 3 years ago

Pretty much of a deal breaker i'd say. Are there any new informations about this?