forked from noxious/server
Updated tiles logics
This commit is contained in:
@ -19,6 +19,14 @@ datasource db {
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model Tile {
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
tags Json
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
model Object {
|
||||
id String @id @default(uuid())
|
||||
name String
|
||||
@ -74,11 +82,6 @@ model CharacterItem {
|
||||
quantity Int
|
||||
}
|
||||
|
||||
model TileTag {
|
||||
tile String @id
|
||||
tags Json
|
||||
}
|
||||
|
||||
model Zone {
|
||||
id Int @id @default(autoincrement())
|
||||
name String
|
||||
|
Reference in New Issue
Block a user