That way it can be re-used when sending the AccountMigrations to other pods again if a message for the migrated account is received. fixes #7902 closes #8309
7 lines
176 B
Ruby
7 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSignatureToAccountMigration < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :account_migrations, :signature, :text
|
|
end
|
|
end
|