Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • " reproducible processes should be preferred over manual processes." I liked that one. For the first time can't someone use the dump file of the database ? I mean that even if you have a dump file or a sequence of migration commands imbedded in a script, it will still make the process of installation automatic. So why use migration over just a simple dump file? Commented Aug 25, 2021 at 8:45
  • 1
    Using a dump file is indeed also a reproducible way of initializing the database, but depending on the dump file format (binary?) it might not mix well with source code version control. It also introduces a difference between the initial schema definition and later schema definition updates, with may not be a real problem but has a slight smell :-) Commented Aug 25, 2021 at 9:29