Files
discourse/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
215 B
Ruby
Raw Normal View History

# 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