summaryrefslogtreecommitdiff
path: root/db/migrate/20151005150751_add_layout_option_for_users.rb
blob: 7e68606969f29f3dbe6523f90485b0d397c2e554 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLayoutOptionForUsers < ActiveRecord::Migration
  def change
    add_column :users, :layout, :integer, default: 0
  end
end