|
208 | 208 | t.index ["uuid"], name: "index_document_capture_sessions_on_uuid"
|
209 | 209 | end
|
210 | 210 |
|
| 211 | + create_table "duplicate_profile_confirmations", force: :cascade do |t| |
| 212 | + t.bigint "profile_id", null: false, comment: "sensitive=false" |
| 213 | + t.datetime "confirmed_at", precision: nil, null: false, comment: "sensitive=false" |
| 214 | + t.bigint "duplicate_profile_ids", null: false, comment: "sensitive=false", array: true |
| 215 | + t.boolean "confirmed_all", comment: "sensitive=false" |
| 216 | + t.datetime "created_at", null: false, comment: "sensitive=false" |
| 217 | + t.datetime "updated_at", null: false, comment: "sensitive=false" |
| 218 | + t.index ["profile_id"], name: "index_duplicate_profile_confirmations_on_profile_id" |
| 219 | + end |
| 220 | + |
211 | 221 | create_table "email_addresses", force: :cascade do |t|
|
212 | 222 | t.bigint "user_id", comment: "sensitive=false"
|
213 | 223 | t.string "confirmation_token", limit: 255, comment: "sensitive=true"
|
|
682 | 692 | end
|
683 | 693 |
|
684 | 694 | add_foreign_key "document_capture_sessions", "users"
|
| 695 | + add_foreign_key "duplicate_profile_confirmations", "profiles" |
685 | 696 | add_foreign_key "iaa_gtcs", "partner_accounts"
|
686 | 697 | add_foreign_key "iaa_orders", "iaa_gtcs"
|
687 | 698 | add_foreign_key "in_person_enrollments", "profiles"
|
|
0 commit comments