these are active record methods: Implementation is simple: ```ruby def increment!(attr) Hyperstack::Model.load { send(attr) }.then { |current_value| update(attr => current_value+1) } end if RUBY_ENGINE == 'opal' ``` The above can be added to your ApplicationRecord.rb file for now