-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjooq.xml
40 lines (40 loc) · 1.81 KB
/
jooq.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.18.0.xsd">
<generator>
<name>org.jooq.codegen.KotlinGenerator</name>
<database>
<name>org.jooq.meta.postgres.PostgresDatabase</name>
<inputSchema>alter_pangya</inputSchema>
<forcedTypes>
<forcedType>
<userType>work.fking.pangya.game.player.ItemUcc</userType>
<includeExpression>ucc</includeExpression>
<jsonConverter>true</jsonConverter>
<includeTypes>JSON</includeTypes>
<objectType>COLUMN</objectType>
</forcedType>
<forcedType>
<userType>work.fking.pangya.game.player.ItemClubWorkshop</userType>
<includeExpression>club_workshop</includeExpression>
<jsonConverter>true</jsonConverter>
<includeTypes>JSON</includeTypes>
<objectType>COLUMN</objectType>
</forcedType>
<forcedType>
<userType>kotlin.IntArray</userType>
<includeExpression>.*_parts|.*_ids|.*_uids|cards|stats</includeExpression>
<jsonConverter>true</jsonConverter>
<includeTypes>JSON</includeTypes>
<objectType>COLUMN</objectType>
</forcedType>
</forcedTypes>
</database>
<target>
<packageName>work.fking.pangya.game.persistence.jooq</packageName>
<directory>game-server/src/main/kotlin</directory>
</target>
<generate>
<kotlinNotNullRecordAttributes>true</kotlinNotNullRecordAttributes>
</generate>
</generator>
</configuration>