Andrew Dryga
Andrew Dryga
Ebert has finished reviewing this Pull Request and has found: * 6 possible new issues (including those that may have been commented here). You can see more details about this...
Do you use default `mnesia_dir` or an overriden one?
@rschooley I plan to work on adapter compatibility with upcoming Ecto 3.0 and will try to address this issue there. It's hard to tell what exactly is happening, if you...
Hi, I plan to support Ecto 3.0 but can't tell when that would happen because have too much work on the day job and lots of other open source repos....
Can you show what shell commands do you run? Basically whenever a table is created we should insert a new record into `id_seq` table that will store sequence number. And...
@gallexme thanks, I'll look into it.
@gallexme you need to create directory for Mnesia files first, try to call `mix ecto.create`. If it fails, just manually create this path. (You can persist in in git by...
@walkr try to: - run migrations from named instance; - set a custom Mnesia dir. Mnesia stores data in folder with host name, and when you change host name maybe...
For RAM copies you need to make sure that you run migrations on each time Erlang VM node starts. And this is a adapters part that could be automated. I'll...
@August401 I think migrations are still a nice way to organize your database structure so I would try to keep them, which requires us to write tasks similar to the...