Skip to content

Instantly share code, notes, and snippets.

@lfittl
Created November 14, 2015 22:08
Show Gist options
  • Select an option

  • Save lfittl/a92cf844f874f87d093f to your computer and use it in GitHub Desktop.

Select an option

Save lfittl/a92cf844f874f87d093f to your computer and use it in GitHub Desktop.
# 1. Migration:
add_column :users, :special_things, :jsonb, null: false, default: '{}'
# 2. Model
store_accessor :special_things, :my_setting
# 3. Form
<%= form_for @user do |f| %>
<%= f.label :my_setting do %>
<%= f.check_box :my_setting %>
My setting
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment