13 lines
254 B
Ruby
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
|