10 lines
316 B
Ruby
10 lines
316 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddNotificationsToTopicUsers < ActiveRecord::Migration[4.2]
|
|
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
|