feature/adapt-to-new-database #34

Merged
vivy-agent merged 9 commits from feature/adapt-to-new-database into main 2026-05-29 15:47:47 +07:00
5 changed files with 1935 additions and 761 deletions
Showing only changes of commit 8cebc0cd20 - Show all commits

View File

@ -118,8 +118,6 @@ model User {
sex user_sex? sex user_sex?
phone_number String? @db.VarChar(20) phone_number String? @db.VarChar(20)
country Country? @relation(fields: [countryId], references: [id], name: "UserCountry") country Country? @relation(fields: [countryId], references: [id], name: "UserCountry")
auth_provider String? @db.VarChar(64)
provider_token String? @db.VarChar(255)
address UserAddress? address UserAddress?
preferences UserPreference? preferences UserPreference?
created_at DateTime @default(now()) @db.Timestamptz() created_at DateTime @default(now()) @db.Timestamptz()