mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
12 lines
267 B
Ruby
12 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveNotNullConstraintFromTerms < ActiveRecord::Migration[6.1]
|
|
def up
|
|
change_column_null :application_setting_terms, :terms, true
|
|
end
|
|
|
|
def down
|
|
change_column_null :application_setting_terms, :terms, false
|
|
end
|
|
end
|