2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/db/migrate/20131229221725_add_watch_new_topics_to_users.rb

5 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