summaryrefslogtreecommitdiff
path: root/lib/items-tech/service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/service.ts')
-rw-r--r--lib/items-tech/service.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/items-tech/service.ts b/lib/items-tech/service.ts
index 158fce13..a14afa14 100644
--- a/lib/items-tech/service.ts
+++ b/lib/items-tech/service.ts
@@ -1089,8 +1089,6 @@ export type WorkType = '기장' | '전장' | '선실' | '배관' | '철의'
export interface ShipbuildingItem {
id: number
itemCode: string
- itemName: string
- description: string | null
workType: WorkType
itemList: string | null // 실제 아이템명
shipTypes: string
@@ -1251,8 +1249,6 @@ export async function getAllShipbuildingItemsForCache() {
.select({
id: itemShipbuilding.id,
itemCode: itemShipbuilding.itemCode,
- itemName: items.itemName,
- description: items.description,
workType: itemShipbuilding.workType,
itemList: itemShipbuilding.itemList,
shipTypes: itemShipbuilding.shipTypes,
@@ -1260,7 +1256,6 @@ export async function getAllShipbuildingItemsForCache() {
updatedAt: itemShipbuilding.updatedAt,
})
.from(itemShipbuilding)
- .leftJoin(items, eq(itemShipbuilding.itemCode, items.itemCode))
return {
data: result as ShipbuildingItem[],