Primary Key with multiple columns? #408
-
Similar to this question but for primary keys. How would it be? |
Beta Was this translation helpful? Give feedback.
Answered by
ikrivosheev
Aug 7, 2022
Replies: 1 comment
-
It should be possible to do something like this et index = Index::create()
.name("idx-glyph-aspect")
.table(Glyph::Table)
.col(Glyph::Aspect)
.col(Glyph::Ratio)
.primary()
.to_owned(); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
billy1624
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be possible to do something like this