Jonathan Duck

Results 26 comments of Jonathan Duck

You can use the name your database engine calls it, if it supports it. If the type you specify isn't one of the "common types", it will just be passed...

Some other potential uses for this: 1. I could probably also implement #51 as part of this too. To support the `HistoryScope`, I'd need to change the query to have...

Here are the changes I'm using for my projects. We're using a vendored copy for now, but I'll periodically update it with changes. https://github.com/ec2-software/pop/tree/history-tracking If any of the changes are...

My understanding is that this has been completed. https://github.com/gobuffalo/fizz, should issue still be open?

~~Pop does not create database tables for you automatically. You can use a fizz migration to create a table.~~ ~~You can use the `buffalo pop create` to create a database,...

Having `OR` and `AND` adds the question of precedence. `a AND b OR c` can be interpreted `(a AND b) OR c` or `a AND (b OR c)`. I think...

Here's the functions and opts I could find reading the source code. I omitted functions that didn't seem to be relevant to a fizz migration file. I added some descriptions,...

I have a solution that doesn't require `nc` or copying/templating files to keep things in sync. `setup_git_user.sh` ```bash # Create the git user if not already created id -u git...