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