mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-23 00:47:51 +00:00
15 lines
289 B
Ruby
15 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TruncateSecurityPipelineExecutionProjectSchedules < Gitlab::Database::Migration[2.2]
|
|
milestone '17.10'
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
truncate_tables!('security_pipeline_execution_project_schedules')
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|