summaryrefslogtreecommitdiff
path: root/db/migrate/20140209025651_create_emails.rb
blob: 51886f8fc89e57c58b1601e0d608dea55720dcd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# rubocop:disable all
class CreateEmails < ActiveRecord::Migration
  DOWNTIME = false

  def change
    create_table :emails do |t|
      t.integer  :user_id, null: false
      t.string   :email, null: false

      t.timestamps null: true
    end

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