class CreatePms < ActiveRecord::Migration
  def change
    create_table :pms do |t|
      t.references :author, index: true
      t.references :recipient, index: true
      t.text :message

      t.timestamps
    end
  end
end