mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00
15 lines
260 B
Ruby
15 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RetruncateSubscriptionSeatAssignments < Gitlab::Database::Migration[2.2]
|
|
milestone '17.9'
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
truncate_tables!('subscription_seat_assignments')
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|