Created
February 11, 2019 18:08
-
-
Save pjagielski/2e097d7b68e3fac297127437723ecdb1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object ArticleTagTable : Table("article_tags") { | |
val tagId = tagId("tag_id").references(TagTable.id) | |
val articleId = articleId("article_id").references(ArticleTable.id) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment