untangled

NEW CHANNEL: #fulcro
tony.kay 2017-01-14T18:34:56.002167Z

@michaeldrogalis In general the idea is that migrations are schema-only, and that they should be additive. There is a seed-fn parameter that let's you tack in whatever you want as a post-migration function (which does get a connection if I remember right)

tony.kay 2017-01-14T18:35:30.002168Z

so, you would simply set up your system to run the schema migrations, and include your own subsystem for whatever post-processing/seeding you feel is necessary

michaeldrogalis 2017-01-14T18:35:50.002169Z

@tony.kay We have some atypical requirements that require seed data to be transacted only once. I ended up using a transactor function to get the job done. Worked fine. 🙂

michaeldrogalis 2017-01-14T18:35:59.002170Z

Thank you for the reply!

tony.kay 2017-01-14T18:36:00.002171Z

cool

tony.kay 2017-01-14T18:36:07.002172Z

welcome...sorry for the delay

michaeldrogalis 2017-01-14T18:36:16.002173Z

Not at all, thank you 🙂