Skip to content

Commit

Permalink
docs: EXPOSED-445 Add documentation for DSL & DAO composite primary keys
Browse files Browse the repository at this point in the history
Fix GH review editor highlighting issue
  • Loading branch information
bog-walk committed Jul 19, 2024
1 parent 73f5c9e commit da17801
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ root.children = SizedCollection(listOf(child1, child2)) // assign children

### Composite primary key reference

Let's say we have the following `CompositeIdTable`:
Assuming that we have the following `CompositeIdTable`:
```kotlin
object Directors : CompositeIdTable("directors") {
val name = varchar("name", 50).entityId()
Expand Down
2 changes: 1 addition & 1 deletion documentation-website/Writerside/topics/Transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,4 @@ To use a custom interceptor that acts on all transactions, extend the `GlobalSta
Exposed uses the Java SPI ServiceLoader to discover and load any implementations of this class. In this situation, a new
file should be created in the *resources* folder
named: `META-INF/services/org.jetbrains.exposed.sql.statements.GlobalStatementInterceptor`. The contents of this file
should be the fully qualified class names of all custom implementations.
should be the fully qualified class names of all custom implementations.

0 comments on commit da17801

Please sign in to comment.