From d1e16a47819509ed645bb93e1a173e0a97025cef Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 8 Jan 2025 19:25:29 +0100 Subject: build: Move mod to subproject --- .../main/kotlin/moe/nea/ledger/database/schema.dot | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mod/src/main/kotlin/moe/nea/ledger/database/schema.dot (limited to 'mod/src/main/kotlin/moe/nea/ledger/database/schema.dot') diff --git a/mod/src/main/kotlin/moe/nea/ledger/database/schema.dot b/mod/src/main/kotlin/moe/nea/ledger/database/schema.dot new file mode 100644 index 0000000..d932f6a --- /dev/null +++ b/mod/src/main/kotlin/moe/nea/ledger/database/schema.dot @@ -0,0 +1,23 @@ +digraph { + node [shape=plain]; + rankdir=LR; + entry [label=< + + + + + + +
Log Entry
playerId
profileId
timestamp
Type
+ >]; + item [label=< + + + + + + +
Item Stack
Transaction
Item ID
Count
Transfer Direction
+ >]; +// item:transaction -> entry; +} \ No newline at end of file -- cgit