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: 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