15 lines
251 B
Ruby
15 lines
251 B
Ruby
class StealEncryptColumns < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
Gitlab::BackgroundMigration.steal('EncryptColumns')
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|