Fork me on GitHub
#datomic
<
2016-09-11
>
kingoftheknoll03:09:37

Is conformity still the go to for schema migrations?

kingoftheknoll03:09:55

I haven't seen much written about the subject.

robert-stuttaford06:09:30

pretty much, @kingoftheknoll . it's actually a pretty straightforward topic 🙂

kingoftheknoll14:09:00

@robert-stuttaford: thanks, also how common is the pattern of injecting the db conn into a web request via interceptors/middleware?

robert-stuttaford16:09:52

very common 🙂 we inject the conn and the latest db, as most requests only need to read

Chris O’Donnell16:09:24

another option is to close over your db conn in your handler function

kingoftheknoll16:09:16

thanks for the advise!