first commit

This commit is contained in:
2025-04-22 10:56:56 +07:00
commit af123c091b
147 changed files with 778063 additions and 0 deletions

No files matched your search

+45
View File
@@ -0,0 +1,45 @@
// model Country {
// id String @id @map("_id")
// name String @unique
// }
// model Address {
// id String @id @map("_id")
// name String @unique
// alt_name String?
// latitude Float?
// longitude Float?
// regencies Regency[]
// }
// type Regency {
// id String @map("_id")
// province_id String
// name String
// alt_name String?
// latitude Float?
// longitude Float?
// districts District[]
// }
// type District {
// id String @map("_id")
// regency_id String
// name String
// alt_name String?
// latitude Float?
// longitude Float?
// villages Village[]
// }
// type Village {
// id String @map("_id")
// district_id String
// name String
// }
// model Postal {
// id Int @id @map("_id")
// name String?
// postal Int[]
// }