<@!498057949541826571> I used prisma to introspect...
# support-questions-legacy
r
@User I used prisma to introspect the databases created by supertokens and it gives me this:
Copy code
ts
model emailpassword_pswd_reset_tokens {
  user_id             String
  token               String              @unique
  token_expiry        Int
  emailpassword_users emailpassword_users @relation(fields: [user_id], references: [user_id])

  @@id([user_id, token])
  @@index([token_expiry], name: "emailpassword_password_reset_token_expiry_index")
}

model emailpassword_users {
  user_id                         String                            @id
  email                           String                            @unique
  password_hash                   String
  time_joined                     Int
  emailpassword_pswd_reset_tokens emailpassword_pswd_reset_tokens[]
}

model key_value {
  name            String  @id
  value           String?
  created_at_time Int?
}

model session_info {
  session_handle       String  @id
  user_id              String
  refresh_token_hash_2 String
  session_data         String?
  expires_at           Int
  created_at_time      Int
  jwt_user_payload     String?
}