diaspora/db/migrate/20211024142641_add_signature_to_account_migration.rb
Benjamin Neff 5714e83ab2
Store signatures of AccountMigrations if the old person is local
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
2021-10-25 03:40:16 +02:00

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