changed prisma to windows
This commit is contained in:
File diff suppressed because one or more lines are too long
@ -17,11 +17,11 @@ exports.$Enums = {}
|
||||
|
||||
/**
|
||||
* Prisma Client JS version: 5.15.1
|
||||
* Query Engine version: 5675a3182f972f1a8f31d16eee6abf4fd54910e3
|
||||
* Query Engine version: 34ace0eb2704183d2c05b60b52fba5c43c13f303
|
||||
*/
|
||||
Prisma.prismaVersion = {
|
||||
client: "5.15.1",
|
||||
engine: "5675a3182f972f1a8f31d16eee6abf4fd54910e3"
|
||||
engine: "34ace0eb2704183d2c05b60b52fba5c43c13f303"
|
||||
}
|
||||
|
||||
Prisma.PrismaClientKnownRequestError = () => {
|
||||
@ -3454,6 +3454,35 @@ exports.Prisma.Wacca_trophyScalarFieldEnum = {
|
||||
badge_type: 'badge_type'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_map_iconScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_name_plateScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_system_voiceScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath',
|
||||
cuePath: 'cuePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_trophiesScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
rareType: 'rareType',
|
||||
explainText: 'explainText'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
@ -3666,7 +3695,11 @@ exports.Prisma.ModelName = {
|
||||
wacca_song_unlock: 'wacca_song_unlock',
|
||||
wacca_static_music: 'wacca_static_music',
|
||||
wacca_ticket: 'wacca_ticket',
|
||||
wacca_trophy: 'wacca_trophy'
|
||||
wacca_trophy: 'wacca_trophy',
|
||||
actaeon_chuni_static_map_icon: 'actaeon_chuni_static_map_icon',
|
||||
actaeon_chuni_static_name_plate: 'actaeon_chuni_static_name_plate',
|
||||
actaeon_chuni_static_system_voice: 'actaeon_chuni_static_system_voice',
|
||||
actaeon_chuni_static_trophies: 'actaeon_chuni_static_trophies'
|
||||
};
|
||||
|
||||
/**
|
||||
|
4447
prisma/schemas/artemis/generated/artemis/index.d.ts
vendored
4447
prisma/schemas/artemis/generated/artemis/index.d.ts
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "prisma-client-16de0508692d39115ef3d2ceca91b4d9c79ff9a8acb0298181b1b009f31dbdb2",
|
||||
"name": "prisma-client-cc20179de8517816c47ab493638d5197db96e7b7784693a96b26988e2eafd496",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"browser": "index-browser.js",
|
||||
|
Binary file not shown.
@ -4032,3 +4032,32 @@ model wacca_trophy {
|
||||
|
||||
@@unique([user, trophy_id, season], map: "wacca_trophy_uk")
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_map_icon {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_name_plate {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_system_voice {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
cuePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_trophies {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
rareType Int? @db.TinyInt
|
||||
explainText String? @db.VarChar(255)
|
||||
}
|
||||
|
@ -17,11 +17,11 @@ exports.$Enums = {}
|
||||
|
||||
/**
|
||||
* Prisma Client JS version: 5.15.1
|
||||
* Query Engine version: 5675a3182f972f1a8f31d16eee6abf4fd54910e3
|
||||
* Query Engine version: 34ace0eb2704183d2c05b60b52fba5c43c13f303
|
||||
*/
|
||||
Prisma.prismaVersion = {
|
||||
client: "5.15.1",
|
||||
engine: "5675a3182f972f1a8f31d16eee6abf4fd54910e3"
|
||||
engine: "34ace0eb2704183d2c05b60b52fba5c43c13f303"
|
||||
}
|
||||
|
||||
Prisma.PrismaClientKnownRequestError = () => {
|
||||
@ -3454,6 +3454,35 @@ exports.Prisma.Wacca_trophyScalarFieldEnum = {
|
||||
badge_type: 'badge_type'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_map_iconScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_name_plateScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_system_voiceScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
sortName: 'sortName',
|
||||
imagePath: 'imagePath',
|
||||
cuePath: 'cuePath'
|
||||
};
|
||||
|
||||
exports.Prisma.Actaeon_chuni_static_trophiesScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
rareType: 'rareType',
|
||||
explainText: 'explainText'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
@ -3666,7 +3695,11 @@ exports.Prisma.ModelName = {
|
||||
wacca_song_unlock: 'wacca_song_unlock',
|
||||
wacca_static_music: 'wacca_static_music',
|
||||
wacca_ticket: 'wacca_ticket',
|
||||
wacca_trophy: 'wacca_trophy'
|
||||
wacca_trophy: 'wacca_trophy',
|
||||
actaeon_chuni_static_map_icon: 'actaeon_chuni_static_map_icon',
|
||||
actaeon_chuni_static_name_plate: 'actaeon_chuni_static_name_plate',
|
||||
actaeon_chuni_static_system_voice: 'actaeon_chuni_static_system_voice',
|
||||
actaeon_chuni_static_trophies: 'actaeon_chuni_static_trophies'
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -4032,3 +4032,32 @@ model wacca_trophy {
|
||||
|
||||
@@unique([user, trophy_id, season], map: "wacca_trophy_uk")
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_map_icon {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_name_plate {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_system_voice {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
sortName String? @db.VarChar(255)
|
||||
imagePath String? @db.VarChar(255)
|
||||
cuePath String? @db.VarChar(255)
|
||||
}
|
||||
|
||||
model actaeon_chuni_static_trophies {
|
||||
id Int @id
|
||||
name String? @db.VarChar(255)
|
||||
rareType Int? @db.TinyInt
|
||||
explainText String? @db.VarChar(255)
|
||||
}
|
||||
|
Reference in New Issue
Block a user