2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class AddAutomaticallyUnpinTopicsToUsers < ActiveRecord::Migration[4.2]
|
2015-11-17 12:21:40 -05:00
|
|
|
def change
|
2021-04-23 12:25:10 -04:00
|
|
|
add_column :users, :automatically_unpin_topics, :boolean, null: false, default: true
|
2015-11-17 12:21:40 -05:00
|
|
|
end
|
|
|
|
end
|