gitlab-org--gitlab-foss/db/post_migrate/20181008145341_steal_encryp...

16 lines
256 B
Ruby

class StealEncryptColumns < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
Gitlab::BackgroundMigration.steal('EncryptColumns')
end
def down
# no-op
end
end