2023-07-12 16:47:08 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-20 00:06:46 +09:00
|
|
|
class AddActivityPubToAccounts < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
2023-11-07 01:15:48 +09:00
|
|
|
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
|
2017-07-20 00:06:46 +09:00
|
|
|
end
|
|
|
|
end
|