Andrey Nering
Andrey Nering
@mdales Thanks. I just updated the README to mention the need to have manual locks.
@mdales I'm curious on what approach you used to have locks using the database itself. If you don't mind opening a PR, it'd be nice. We could also discuss the...
Hi @RevProg, Ideally, this should be fixed on Gorm itself instead of here. I'd encourage you to open another issue there with details and a reproduction script (it doesn't need...
Hi again @dseevr, The idea of the column is good. I think I have to consider it, something similar was asked before as part of #4. I'd be happy to...
Hi @SchiffFlieger, I think that having a single function for Before and After may be better: ```go type Options struct { // ... WhileMigrating func(m *Migration, yield func()) } ```...
Yeah, unfortunately we don't support every column type that exists. Arrays and maps are assumed to be JSON columns. Anything different needs the `RAW=` prefix currently. If anyone has an...
Hi @pgundlach, Yes, `Directory`, `Files` and `Paths` should always be the last option in the call.
Hi @ryanneufeld, thanks for opening this issue! I'm not sure what to think about this feature request. Although easy to implement, it feels wrong to me to have multiple files...
@KoduIsGreat I don't think there's a reason to specifically use the CLI to load fixtures. You could use the library to load fixtures once, and then use go-txdb to wrap...
Hi @sproutworks, I have the impression that the problem you're having is a consequence of how you're using testfixtures. Ideally, you should load all tables before every test. If you're...