2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class AddAutomaticallyUnpinTopicsToUsers < ActiveRecord::Migration[4.2]
|
2015-11-17 18:21:40 +01: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 18:21:40 +01:00
|
|
|
end
|
|
|
|
|
end
|