fbe7230865
- Created migration to drop `type` column from `stock_keeping_units` table. - Added `Guild` model to Prisma schema. - Implemented `BusinessActivitiesQueryService` for querying business activities. - Developed `GoodsSharedService` for handling goods creation and updates. - Introduced DTOs for creating and updating stock keeping units. - Created controller and service for managing stock keeping units. - Implemented response DTOs for stock keeping units service. - Established module for stock keeping units management.
14 lines
370 B
Plaintext
14 lines
370 B
Plaintext
model Account {
|
|
id String @id @default(ulid())
|
|
username String @unique
|
|
password String
|
|
status AccountStatus
|
|
type AccountType
|
|
admin_account AdminAccount?
|
|
consumer_account ConsumerAccount?
|
|
partner_account PartnerAccount?
|
|
provider_account ProviderAccount?
|
|
|
|
@@map("accounts")
|
|
}
|