debian-mirror-gitlab/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
2016-06-16 23:09:34 +05:30

11 lines
217 B
Ruby

# rubocop:disable all
class AddNullToNameForCiProjects < ActiveRecord::Migration
def up
change_column_null :ci_projects, :name, true
end
def down
change_column_null :ci_projects, :name, false
end
end