Sha256: 51e678bc5c960d4f9713d1c69538150efa4e0f7ce6c2ccaf136b37281d8e25f6
Contents?: true
Size: 403 Bytes
Versions: 14
Compression:
Stored size: 403 Bytes
Contents
class CreateParticipants < ActiveRecord::Migration def change create_table :participants do |t| t.string :email, null: false, default: "" t.string :phone_number t.string :study_id t.timestamps end add_index :participants, :email, unique: true add_index :participants, :phone_number, unique: true add_index :participants, :study_id, unique: true end end
Version data entries
14 entries across 14 versions & 1 rubygems