You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
487 B
14 lines
487 B
# frozen_string_literal: true
|
|
|
|
class AddActivityPubToAccounts < ActiveRecord::Migration[5.1]
|
|
def change
|
|
change_table(:accounts, bulk: true) do |t|
|
|
t.column :inbox_url, :string, null: false, default: ''
|
|
t.column :outbox_url, :string, null: false, default: ''
|
|
t.column :shared_inbox_url, :string, null: false, default: ''
|
|
t.column :followers_url, :string, null: false, default: ''
|
|
t.column :protocol, :integer, null: false, default: 0
|
|
end
|
|
end
|
|
end
|