Add messages and bump epp-xml

This commit is contained in:
Martin Lensment 2014-11-06 10:31:38 +02:00
parent be319509ca
commit ef632e0ce1
11 changed files with 138 additions and 43 deletions

View file

@ -0,0 +1,12 @@
class CreateMessages < ActiveRecord::Migration
def change
create_table :messages do |t|
t.integer :registrar_id
t.string :body
t.string :object_type
t.string :object
t.timestamps
end
end
end