fedibird-fe/db/migrate/20191022105417_add_exclude_reblog_to_domain_subscribe.rb

6 lines
170 B
Ruby
Raw Normal View History

2019-08-30 08:02:41 +00:00
class AddExcludeReblogToDomainSubscribe < ActiveRecord::Migration[5.2]
def change
add_column :domain_subscribes, :exclude_reblog, :boolean, default: true
end
end