add creator_ip_addr field to user feedback

This commit is contained in:
Albert Yi
2018-11-29 16:51:46 -08:00
parent 0488a326fd
commit fe612908cd
3 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
class AddCreatorIpAddrToUserFeedback < ActiveRecord::Migration[5.2]
def change
add_column :user_feedback, :creator_ip_addr, "inet"
add_index :user_feedback, :creator_ip_addr
end
end