models.go 357 B

12345678910111213141516171819202122232425262728
  1. // Code generated by sqlc. DO NOT EDIT.
  2. // versions:
  3. // sqlc v1.27.0
  4. package jets
  5. type Jet struct {
  6. ID int32
  7. PilotID int32
  8. Age int32
  9. Name string
  10. Color string
  11. }
  12. type Language struct {
  13. ID int32
  14. Language string
  15. }
  16. type Pilot struct {
  17. ID int32
  18. Name string
  19. }
  20. type PilotLanguage struct {
  21. PilotID int32
  22. LanguageID int32
  23. }