2023-07-12 10:47:08 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-19 18:06:46 +03:00
|
|
|
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
|