Anton Berkutov
Results
3
comments of
Anton Berkutov
Try: rails g migration AddPrimaryKeyToPageHierarchies id:primary_key rails db:migrate This helped to me
probably not, it's just a regular primary key field
If we have :jsonb backend I guess the easiest way to apply all translations at once is: ```ruby hash = { en: 'English Name', fr: 'French Name' } post.write_attribute(:name, hash)...