This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-01-28
Channels
- # beginners (33)
- # cljs-dev (9)
- # cljsjs (1)
- # cljsrn (5)
- # clojure (123)
- # clojure-uk (2)
- # clojured (1)
- # clojurescript (11)
- # datomic (71)
- # defnpodcast (2)
- # dirac (8)
- # emacs (35)
- # events (4)
- # figwheel (7)
- # fulcro (29)
- # hoplon (6)
- # immutant (1)
- # keechma (4)
- # lumo (43)
- # nyc (1)
- # off-topic (16)
- # om (1)
- # onyx (9)
- # re-frame (12)
- # rum (15)
- # shadow-cljs (18)
- # spacemacs (1)
- # sql (6)
- # uncomplicate (1)
- # unrepl (5)
- # vim (1)
- Is possible maintain a SQL application without a ORM?
- (when *1
how to manage migrations? )
In clojure, it’s almost certainly preferred
For managing migrations, most prefer something like migratus or ragtime
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?
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
So much depends on the particulars of your use case