mirror of
https://github.com/mastodon/mastodon
synced 2024-12-03 01:08:23 +09:00
6 lines
133 B
Ruby
6 lines
133 B
Ruby
|
class AddDomainToSubscriptions < ActiveRecord::Migration[5.1]
|
||
|
def change
|
||
|
add_column :subscriptions, :domain, :string
|
||
|
end
|
||
|
end
|