joseph_ivie
08/09/2021, 3:20 PMchristophsturm
08/09/2021, 6:39 PMjoseph_ivie
08/09/2021, 6:43 PMESchouten
08/09/2021, 7:55 PMjoseph_ivie
08/09/2021, 8:04 PMESchouten
08/09/2021, 8:14 PMchristophsturm
08/10/2021, 5:58 AMEach ORM requires its own kind of table definition,.... making it ORM agnostic would take away a lot of the value.well Ruby on Rails has pretty nice migrations that are orm agnostic, so thats debatable. but it seems to be tied to jdbc anyway and I would need something that supports r2dbc.
joseph_ivie
08/10/2021, 6:22 AMchristophsturm
08/10/2021, 6:54 AMchange_table :users do
add_field :user, :int
...
end
add_belongs_to
that are tied to how activerecord works, but the migrations itself are just a ruby dsl for sql schema changesjoseph_ivie
08/10/2021, 7:23 AMchristophsturm
08/10/2021, 7:35 AMkqr
08/10/2021, 8:24 AMchristophsturm
08/10/2021, 8:33 AMdave08
08/10/2021, 9:10 AMjoseph_ivie
08/10/2021, 4:40 PMkqr
08/10/2021, 5:06 PMjoseph_ivie
10/05/2021, 9:39 PMdave08
10/06/2021, 9:13 AMESchouten
10/06/2021, 1:50 PMdave08
10/06/2021, 2:04 PMESchouten
10/06/2021, 2:17 PMjoseph_ivie
10/06/2021, 4:20 PMESchouten
10/06/2021, 4:40 PMjoseph_ivie
10/06/2021, 4:53 PMESchouten
11/02/2021, 5:04 PMclass UserTable : TableConfiguration(User::class) {
override fun configure() {
id(User::id)
}
}
Might look weird, typed this on mobilejoseph_ivie
11/02/2021, 5:08 PMexposed-plus
.