13 lines
193 B
Ruby
13 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddStateToMembers < ActiveRecord::Migration[6.1]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
def up
|
|
# no-op
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|