Files
discourse/db/migrate/20131229221725_add_watch_new_topics_to_users.rb
T

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

8 lines
196 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddWatchNewTopicsToUsers < ActiveRecord::Migration[4.2]
2013-12-30 13:02:12 +11:00
def change
add_column :users, :watch_new_topics, :boolean, default: false, null: false
end
end