Shopify / ruby-lsp-rails

A Ruby LSP addon for Rails
https://shopify.github.io/ruby-lsp/rails-addon
MIT License
553 stars 25 forks source link

Indicate primary key in schema hover #313

Closed andyw8 closed 5 months ago

andyw8 commented 6 months ago

When hovering over an ActiveRecord model, we show a schema consisting of the field names and types. It could be useful to also indicate the primary key, e.g. with a (PK) suffix.

To check which field is the primary key, we can call .primary_key on the model class.