debian-mirror-gitlab/db/migrate/20150211174341_allow_null_in_services_project_id.rb
2018-11-18 11:00:15 +05:30

6 lines
147 B
Ruby

class AllowNullInServicesProjectId < ActiveRecord::Migration
def change
change_column :services, :project_id, :integer, null: true
end
end