Gab Social. All are welcome.
This commit is contained in:
19
db/migrate/20171028221157_add_reblogs_to_follows.rb
Normal file
19
db/migrate/20171028221157_add_reblogs_to_follows.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
require Rails.root.join('lib', 'gabsocial', 'migration_helpers')
|
||||
|
||||
class AddReblogsToFollows < ActiveRecord::Migration[5.1]
|
||||
include GabSocial::MigrationHelpers
|
||||
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
safety_assured do
|
||||
add_column_with_default :follows, :show_reblogs, :boolean, default: true, allow_null: false
|
||||
add_column_with_default :follow_requests, :show_reblogs, :boolean, default: true, allow_null: false
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
remove_column :follows, :show_reblogs
|
||||
remove_column :follow_requests, :show_reblogs
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user