Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211024142641_add_signature_to_account_migration.rb « migrate « db - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6acbcebe87c0c5cfcb5f06554ebdc1869766c33 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddSignatureToAccountMigration < ActiveRecord::Migration[5.2]
  def change
    add_column :account_migrations, :signature, :text
  end
end