File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,17 @@ import { faker } from "@faker-js/faker";
2
2
import { PrismaClient , PubType } from "@prisma/client" ;
3
3
import { v4 as uuidv4 } from "uuid" ;
4
4
5
- import type { db as kyselyDb } from "~/kysely/database" ;
6
5
import type { CommunitiesId } from "~/kysely/types/public/Communities" ;
7
6
import type { PubTypesId } from "~/kysely/types/public/PubTypes" ;
8
7
import { corePubFields } from "~/actions/corePubFields" ;
8
+ import { db } from "~/kysely/database" ;
9
9
import { StagesId } from "~/kysely/types/public/Stages" ;
10
10
import { env } from "../../lib/env/env.mjs" ;
11
11
import { FileUpload } from "../../lib/fields/fileUpload" ;
12
12
13
13
export const unJournalId = "03e7a5fd-bdca-4682-9221-3a69992c1f3b" ;
14
14
15
15
export default async function main (
16
- db : typeof kyselyDb ,
17
16
prisma : PrismaClient ,
18
17
communityUUID : string
19
18
) {
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ async function main() {
67
67
logger . info ( "build crocroc" ) ;
68
68
await buildCrocCroc ( db , crocCrocId ) ;
69
69
logger . info ( "build unjournal" ) ;
70
- await buildUnjournal ( db , prisma , unJournalId ) ;
70
+ await buildUnjournal ( prisma , unJournalId ) ;
71
71
72
72
try {
73
73
await createUserMembers (
You can’t perform that action at this time.
0 commit comments