discourse/db/migrate/20130122051134_add_auto_tra...

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

8 lines
197 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddAutoTrackTopicsToUser < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :users, :auto_track_topics, :boolean, null: false, default: false
end
end