Mike Stefanello
Mike Stefanello
`CREATE UNIQUE INDEX on my_table USING BTREE (some_id, lower(title)) WHERE archived_at IS NULL;` `CREATE UNIQUE INDEX ON my_table ( LEAST( one_id, another_id ), GREATEST( one_id, another_id ), typ );`
I understand. I was hoping to first see if the error made it clear what in the schema would be causing this. I unfortunately cannot share the schema entirely. We're...
I can confirm that's the source of this problem - an enum with a non-int value (in this case, it is `34.5`). The other error, which I can open a...
I created a new issue for the second problem: https://github.com/xo/xo/issues/345
This was the result of a migration that added a value before another. IE: ``` ALTER TYPE t_my_type ADD VALUE 'NEW_VALUE' BEFORE 'EXISTING_VALUE'; ```
That's an interesting idea. Can it be provided in a way that doesn't modify the existing code (ie, in a `deploy` directory, or something along those lines)? I've never used...
So what would be required to add to this repo in order to make deploying via fly easier? Does this app require anything highly specific? I'm curious if including it...
I'm going to close this. There's an endless amount of places and way to host this and there's really nothing specific about this app that requires anything custom. I'm also...
Sorry for the confusion. The variadic argument in `Redirect()` are _route parameters_ and not _query parameters_. It's easy to mix these up. Route parameters, sometimes referred to as slugs, are...
On the template side, you no longer need to do `{{call .ToURL}}`. Instead, just `{{url}}` works now. As for query param support, I added a new `redirect` package (https://github.com/mikestefanello/pagoda/commit/ca22f54c899fa87e8ff90c87bec90ecdc03299a6) which...