debian-mirror-gitlab/db/post_migrate/20180512061621_add_not_null_constraint_to_project_features_project_id.rb
2019-01-03 12:48:30 +05:30

22 lines
472 B
Ruby

class AddNotNullConstraintToProjectFeaturesProjectId < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
class ProjectFeature < ActiveRecord::Base
include EachBatch
self.table_name = 'project_features'
end
def up
ProjectFeature.where(project_id: nil).delete_all
change_column_null :project_features, :project_id, false
end
def down
change_column_null :project_features, :project_id, true
end
end