debian-mirror-gitlab/db/migrate/20150211174341_allow_null_in_services_project_id.rb

7 lines
169 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-04-26 12:48:37 +05:30
class AllowNullInServicesProjectId < ActiveRecord::Migration
def change
change_column :services, :project_id, :integer, null: true
end
end