mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:24:05 -06:00
308c032293
* spelling: initial * spelling: integer * spelling: irreversible * spelling: mislabeled * spelling: notification * spelling: nullable * spelling: targeted
8 lines
215 B
Ruby
8 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddAutomaticallyUnpinTopicsToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :automatically_unpin_topics, :boolean, null: false, default: true
|
|
end
|
|
end
|