package website
class Translations {
String content;
/* Primary key consists of language_id and text_id */
static constraints = {
content();
}
}
単一の主キーを持つテーブルの場合、すべてが明確です。
しかし、複合キーでどのように処理するのだろうか。
Grails 2.1.1 を使用して、これらのテーブルをスキャフォールディングすることは可能ですか?