master
 1class CreateReceivedEmails < ActiveRecord::Migration
 2  def change
 3    create_table :received_emails, id: :uuid do |t|
 4      t.belongs_to :user, foreign_key: true, index: true, type: :uuid
 5      t.text :to
 6      t.text :from
 7      t.string :subject
 8      t.text :body
 9
10      t.timestamps null: false
11    end
12  end
13end