~cytrogen/masto-fe

ref: cc4560d95bae267a8f9281f9f559f8a08b87bd85 masto-fe/db/migrate/20170718211102_add_activitypub_to_accounts.rb -rw-r--r-- 487 bytes
cc4560d9 — Claire Change “privacy and reach” settings so that unchecking boxes always increase privacy and checking them always increase reach (#26508) 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