1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-01 00:08:32 +09:00
whippy-edition/db/migrate/20170714184731_add_domain_to_subscriptions.rb

8 lines
164 B
Ruby

# frozen_string_literal: true
class AddDomainToSubscriptions < ActiveRecord::Migration[5.1]
def change
add_column :subscriptions, :domain, :string
end
end