summaryrefslogtreecommitdiff
path: root/db/migrate/20170613021450_create_messagereplies.rb
blob: 21ef3bcb8cd67339d38d824089e843bbe93eeedd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateMessagereplies < ActiveRecord::Migration
  def change
    create_table :messagereplies do |t|
      t.text       :text

      t.references :user_author
      t.references :user_editor
      t.references :message

      t.timestamps null: true
    end
  end
end