This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20121207000741_add_notifications_to_topic_users.rb
2013-02-26 07:31:35 +03:00

8 lines
280 B
Ruby

class AddNotificationsToTopicUsers < ActiveRecord::Migration
def change
add_column :topic_users, :notifications, :integer, default: 2
add_column :topic_users, :notifications_changed_at, :datetime
add_column :topic_users, :notifications_reason_id, :integer
end
end