myong_dev #8

Merged
myong merged 5 commits from myong_dev into main 2026-04-09 03:54:14 +00:00
6 changed files with 6 additions and 6 deletions
Showing only changes of commit 9f903f676f - Show all commits

View File

@ -1,4 +1,4 @@
# 낚시 미니게임 구현 기획안 # 낚시 미니게임 구현 기획안
이 문서는 Kord의 `낚시(Fishing)` 미니게임 시스템에 대한 설계 방향과 구현 범위를 정리한 기획서입니다. 이 문서는 Kord의 `낚시(Fishing)` 미니게임 시스템에 대한 설계 방향과 구현 범위를 정리한 기획서입니다.

View File

@ -1,4 +1,4 @@
CREATE TABLE "FishingProfile" ( CREATE TABLE "FishingProfile" (
"userId" TEXT NOT NULL, "userId" TEXT NOT NULL,
"guildId" TEXT NOT NULL, "guildId" TEXT NOT NULL,
"totalCastCount" INTEGER NOT NULL DEFAULT 0, "totalCastCount" INTEGER NOT NULL DEFAULT 0,

View File

@ -1,4 +1,4 @@
CREATE TABLE "FishingCollectionEntry" ( CREATE TABLE "FishingCollectionEntry" (
"userId" TEXT NOT NULL, "userId" TEXT NOT NULL,
"guildId" TEXT NOT NULL, "guildId" TEXT NOT NULL,
"fishId" TEXT NOT NULL, "fishId" TEXT NOT NULL,

View File

@ -1,4 +1,4 @@
generator client { generator client {
provider = "prisma-client-js" provider = "prisma-client-js"
} }

View File

@ -1,4 +1,4 @@
import { import {
ChannelType, ChannelType,
ChatInputCommandInteraction, ChatInputCommandInteraction,
EmbedBuilder, EmbedBuilder,

View File

@ -1,4 +1,4 @@
/** /**
* i18n Type Definitions & Interfaces for Kord Bot. * i18n Type Definitions & Interfaces for Kord Bot.
* *
* Designed with provider interface pattern for future infrastructure swap * Designed with provider interface pattern for future infrastructure swap