~cytrogen/masto-fe

ref: 027c1bef8d0314dfd800d345d322d8023f2383f7 masto-fe/db/migrate/20170718211102_add_activitypub_to_accounts.rb -rw-r--r-- 487 bytes
027c1bef — renovate[bot] Update dependency active_model_serializers to v0.10.14 (#27303) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddActivityPubToAccounts < ActiveRecord::Migration[5.1]
  def change
    add_column :accounts, :inbox_url, :string, null: false, default: ''
    add_column :accounts, :outbox_url, :string, null: false, default: ''
    add_column :accounts, :shared_inbox_url, :string, null: false, default: ''
    add_column :accounts, :followers_url, :string, null: false, default: ''
    add_column :accounts, :protocol, :integer, null: false, default: 0
  end
end