summaryrefslogtreecommitdiff
path: root/db/migrate/20191028162543_add_setup_for_company_to_user_preferences.rb
blob: 18a8a2306e264ba252bdc968d94f839bc3a6673a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSetupForCompanyToUserPreferences < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :user_preferences, :setup_for_company, :boolean
  end
end