Moritz Schmale

Results 64 comments of Moritz Schmale
trafficstars

Hello @kianmeng, thank you for your submission. I'm afraid this PR does too many things at once, especially I don't like to see the addition of images from other hosts...

What is the application doing with the Repo when these logs appear? begin/commit logs are expected in a way, because ex_audit will use transactions to insert the tracked versions. There...

@joelevering can you provide more details to this issue?

I have thought of this as well, mainly to be able to track schemas that have a different set of primary keys (for example the intermediate tables in many-to-many relationships)....

Hi, thanks for the suggestion, I think this can be useful as a hint below the getting started code block, since most people will copy code blindly into their app...

Closing since there was no further activity

Yes it would definitely fit into the concept when you have an empty patch and a custom action type. The custom action types could also be used for actual patches...

You can simply make 2 repo modules, one with `use ExAudit.Repo` and the other with `use Ecto.Repo`. However, beware that each repo has their own connection pool

your secondary repo doesn't have to have migrations, and the config to both repos can be the same (even coming from the same variable in config.exs). I agree, a seperate...

I'll consider defining a few important functions like insert, update, delete, history and rollback in the `ExAudit` module so it can be used without modifying the repo.