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