logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20171028221157_add_reblogs_to_follows.rb (553B)


  1. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  2. class AddReblogsToFollows < ActiveRecord::Migration[5.1]
  3. include Mastodon::MigrationHelpers
  4. disable_ddl_transaction!
  5. def up
  6. safety_assured do
  7. add_column_with_default :follows, :show_reblogs, :boolean, default: true, allow_null: false
  8. add_column_with_default :follow_requests, :show_reblogs, :boolean, default: true, allow_null: false
  9. end
  10. end
  11. def down
  12. remove_column :follows, :show_reblogs
  13. remove_column :follow_requests, :show_reblogs
  14. end
  15. end