summaryrefslogtreecommitdiff
path: root/db/migrate/20210606214340_create_messages.rb
blob: 5886af6cd17940693ea3add64f9517e45d7af9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateMessages < ActiveRecord::Migration[6.1]
  def change
    create_table :messages do |t|
      t.references :sender, foreign_key: { to_table: :characters }
      t.references :recipient, null: false, foreign_key: { to_table: :characters }
      t.string :subject
      t.text :body

      t.timestamps
    end
  end
end