Add forgotten migration

This commit is contained in:
wvengen 2015-02-27 17:59:30 +01:00
parent 55e8ff481c
commit b42672c06c
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
class AddReplytoAndGroupidToMessages < ActiveRecord::Migration
def change
add_column :messages, :reply_to, :integer
add_column :messages, :group_id, :integer
end
end