summaryrefslogtreecommitdiff
path: root/db/migrate/20140209025651_create_emails.rb
blob: 571beb19cdd6e111bb20c796da134514a2fd88e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# rubocop:disable all
class CreateEmails < ActiveRecord::Migration
  def change
    create_table :emails do |t|
      t.integer  :user_id, null: false
      t.string   :email, null: false
      
      t.timestamps
    end

    add_index :emails, :user_id
    add_index :emails, :email, unique: true
  end
end