models.go 337 B

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