Matthew McGarvey

Results 134 comments of Matthew McGarvey
trafficstars

@Ash42Z I think you have a typo on the tag association `has_many tags : Post` but the main issue is that you're trying to go through a join table it...

@sdogruyol I made this second branch that goes further and adds a `mount` method for composing applications and included a sample file. If you ignore the `mount`, that's what this...

To be straightforward, I'm definitely iffy on if this _should_ be merged. I have some thoughts about this, though I made the code change anyways. 1. Kemal is a small...

I'm split on where the real problem is. It seems like solargraph formatting should work whether or not I am using bundler with solargraph. This could be a potential problem...

So after looking into it more, it seems like the problem is a bit different. One of the gems I have installed has a rubocop binstub (they did `bundle binstubs...

Just as a note `uuid-ossp` has a note in their docs: ``` If you only need randomly-generated (version 4) UUIDs, consider using the gen_random_uuid() function from the pgcrypto module instead....

Just wanted to drop this link here while I happen to know where to find it, rails' handling of uuid as primary key setup https://github.com/rails/rails/blob/580eefe1bc5d7241a4b2f3ee863523c5b8fd2f80/activerecord/lib/active_record/migration/compatibility.rb#L123-L128

UUID primary keys now have defaults in the database with https://github.com/luckyframework/avram/pull/546 the timestamps are the next to consider

I just looked into Rails and Laravel. Neither of them set a default value in the database for the `created_at` and `updated_at` columns. They are both set in the code.

@Whaxion before you get too far on that, I'd really like for you to discuss your plans in here first. Looking at your branch, I see some things that we...