mirror of
https://github.com/glitch-soc/mastodon
synced 2025-05-29 02:26:32 +00: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
|