sqlc.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "version": "2",
  3. "sql": [
  4. {
  5. "schema": "src/main/resources/authors/postgresql/schema.sql",
  6. "queries": "src/main/resources/authors/postgresql/query.sql",
  7. "engine": "postgresql",
  8. "gen": {
  9. "kotlin": {
  10. "out": "src/main/kotlin/com/example/authors/postgresql",
  11. "package": "com.example.authors.postgresql"
  12. }
  13. }
  14. },
  15. {
  16. "schema": "src/main/resources/ondeck/postgresql/schema",
  17. "queries": "src/main/resources/ondeck/postgresql/query",
  18. "engine": "postgresql",
  19. "gen": {
  20. "kotlin": {
  21. "out": "src/main/kotlin/com/example/ondeck/postgresql",
  22. "package": "com.example.ondeck.postgresql"
  23. }
  24. }
  25. },
  26. {
  27. "schema": "src/main/resources/jets/schema.sql",
  28. "queries": "src/main/resources/jets/query-building.sql",
  29. "engine": "postgresql",
  30. "gen": {
  31. "kotlin": {
  32. "out": "src/main/kotlin/com/example/jets",
  33. "package": "com.example.jets"
  34. }
  35. }
  36. },
  37. {
  38. "schema": "src/main/resources/booktest/postgresql/schema.sql",
  39. "queries": "src/main/resources/booktest/postgresql/query.sql",
  40. "engine": "postgresql",
  41. "gen": {
  42. "kotlin": {
  43. "out": "src/main/kotlin/com/example/booktest/postgresql",
  44. "package": "com.example.booktest.postgresql"
  45. }
  46. }
  47. },
  48. {
  49. "schema": "src/main/resources/authors/mysql/schema.sql",
  50. "queries": "src/main/resources/authors/mysql/query.sql",
  51. "engine": "mysql",
  52. "gen": {
  53. "kotlin": {
  54. "out": "src/main/kotlin/com/example/authors/mysql",
  55. "package": "com.example.authors.mysql"
  56. }
  57. }
  58. },
  59. {
  60. "schema": "src/main/resources/booktest/mysql/schema.sql",
  61. "queries": "src/main/resources/booktest/mysql/query.sql",
  62. "engine": "mysql",
  63. "gen": {
  64. "kotlin": {
  65. "out": "src/main/kotlin/com/example/booktest/mysql",
  66. "package": "com.example.booktest.mysql"
  67. }
  68. }
  69. },
  70. {
  71. "schema": "src/main/resources/ondeck/mysql/schema",
  72. "queries": "src/main/resources/ondeck/mysql/query",
  73. "engine": "mysql",
  74. "gen": {
  75. "kotlin": {
  76. "out": "src/main/kotlin/com/example/ondeck/mysql",
  77. "package": "com.example.ondeck.mysql"
  78. }
  79. }
  80. }
  81. ]
  82. }