forked from noxious/server
Improved table names
This commit is contained in:
@ -42,16 +42,16 @@ model SpriteAction {
|
||||
}
|
||||
|
||||
model Item {
|
||||
id String @id @default(uuid())
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
description String?
|
||||
itemType ItemType
|
||||
stackable Boolean @default(false)
|
||||
rarity ItemRarity @default(COMMON)
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
stackable Boolean @default(false)
|
||||
rarity ItemRarity @default(COMMON)
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
characters CharacterItem[]
|
||||
equipment EquippedCharacterItem[]
|
||||
equipment CharacterEquipment[]
|
||||
}
|
||||
|
||||
enum ItemType {
|
||||
|
Reference in New Issue
Block a user