mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-02 01:51:27 +00:00
7 lines
164 B
Ruby
7 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDomainToSubscriptions < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :subscriptions, :domain, :string
|
|
end
|
|
end
|