Fork me on GitHub
#sql
<
2018-01-28
>
souenzzo18:01:30

- Is possible maintain a SQL application without a ORM? - (when *1 how to manage migrations? )

donaldball19:01:03

In clojure, it’s almost certainly preferred

donaldball19:01:17

For managing migrations, most prefer something like migratus or ragtime

souenzzo19:01:57

There is some tool that helps to keep plumatic/schema or other schema tool in sync with SQL schema? Or "test" is the solution to find error's?

donaldball19:01:55

You could certainly write fns that would generate a plumatic/schema from a database schema, e.g. using DatabaseMetadata, or that would reconcile one against the other

donaldball19:01:47

So much depends on the particulars of your use case