summaryrefslogtreecommitdiff
path: root/db/migrate/20150616021904_create_profiles.rb
blob: 4d41d35251c97211ace965288c823bcdbc3eb490 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateProfiles < ActiveRecord::Migration
  def change
    create_table :profiles, id: :uuid do |t|
      t.uuid :user_id, null: false
      t.integer :gender, default: nil
      t.integer :social_tolerance, default: 0
      t.timestamps null: false
    end
    add_index :profiles, :user_id
  end
end