Files
discourse/db/migrate/20131229221725_add_watch_new_topics_to_users.rb
2017-09-25 13:48:58 +08:00

6 lines
165 B
Ruby

class AddWatchNewTopicsToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :watch_new_topics, :boolean, default: false, null: false
end
end