notebook/db/migrate/20201001195046_add_reference_code_to_notifications.rb
2020-10-01 16:36:52 -07:00

6 lines
148 B
Ruby

class AddReferenceCodeToNotifications < ActiveRecord::Migration[6.0]
def change
add_column :notifications, :reference_code, :string
end
end