Files
grecia/db/migrate/20160608174104_create_direct_messages.rb
2016-06-08 20:44:54 +02:00

13 lines
254 B
Ruby

class CreateDirectMessages < ActiveRecord::Migration
def change
create_table :direct_messages do |t|
t.integer :sender_id
t.integer :receiver_id
t.string :title
t.text :body
t.timestamps null: false
end
end
end