1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 11:19:51 +00:00
discourse/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb

6 lines
182 B
Ruby
Raw Normal View History

class AddAutomaticallyUnpinTopicsToUsers < ActiveRecord::Migration
def change
add_column :users, :automatically_unpin_topics, :boolean, nullabe: false, default: true
end
end