Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20140209025651_create_emails.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb78c4af11b25b59533c2d15a33292c01920eb3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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