複合主キー

複数のフィールドを主キーとして設定すると、次のように複合主キーが作成されます。

type Product struct {
ID string `gorm:"primaryKey"`
LanguageCode string `gorm:"primaryKey"`
Code string
Name string
}

intのPrioritizedPrimaryFieldはデフォルトでAutoIncrementされます。 無効にしたいなら、autoIncrementをintフィールドでfalseにしてください。

type Product struct {
CategoryID uint64 `gorm:"primaryKey;autoIncrement:false"`
TypeID uint64 `gorm:"primaryKey;autoIncrement:false"`
}

Platinum Sponsors

Gold Sponsors

Platinum Sponsors

Gold Sponsors