2021-07-27 14:10:54 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddStateToMembers < ActiveRecord::Migration[6.1]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
def up
|
2021-07-29 05:08:46 -04:00
|
|
|
# no-op
|
2021-07-27 14:10:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2021-07-29 05:08:46 -04:00
|
|
|
# no-op
|
2021-07-27 14:10:54 -04:00
|
|
|
end
|
|
|
|
end
|