summaryrefslogtreecommitdiff
path: root/db/migrate/20150211174341_allow_null_in_services_project_id.rb
blob: fea95c79adf65516b801485b3b6b778d4e1ebe5e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AllowNullInServicesProjectId < ActiveRecord::Migration
  def change
    change_column :services, :project_id, :integer, null: true
  end
end