xorm.log.2018-11-04 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. 2018/11/04 20:43:22 [xorm] [warn] 2018/11/04 20:43:22.768602 Table user Column max_repo_creation db default is '-1'::integer, struct default is -1
  2. 2018/11/04 20:43:22 [xorm] [warn] 2018/11/04 20:43:22.769738 Table user has column company_name but struct has not related field
  3. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.739537 [SQL] SELECT tablename FROM pg_tables WHERE schemaname = $1 [public]
  4. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.750919 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  5. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  6. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  7. FROM pg_attribute f
  8. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  9. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  10. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  11. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  12. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  13. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  14. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [public_key public]
  15. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.764303 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [public_key public]
  16. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.767218 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  17. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  18. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  19. FROM pg_attribute f
  20. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  21. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  22. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  23. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  24. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  25. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  26. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [access_token public]
  27. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.775035 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [access_token public]
  28. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.776097 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  29. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  30. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  31. FROM pg_attribute f
  32. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  33. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  34. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  35. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  36. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  37. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  38. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [two_factor public]
  39. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.783352 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [two_factor public]
  40. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.784614 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  41. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  42. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  43. FROM pg_attribute f
  44. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  45. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  46. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  47. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  48. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  49. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  50. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [two_factor_recovery_code public]
  51. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.795982 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [two_factor_recovery_code public]
  52. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.797218 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  53. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  54. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  55. FROM pg_attribute f
  56. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  57. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  58. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  59. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  60. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  61. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  62. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [repository public]
  63. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.807404 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [repository public]
  64. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.808802 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  65. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  66. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  67. FROM pg_attribute f
  68. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  69. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  70. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  71. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  72. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  73. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  74. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [deploy_key public]
  75. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.816144 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [deploy_key public]
  76. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.817218 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  77. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  78. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  79. FROM pg_attribute f
  80. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  81. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  82. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  83. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  84. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  85. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  86. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [collaboration public]
  87. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.824310 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [collaboration public]
  88. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.825428 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  89. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  90. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  91. FROM pg_attribute f
  92. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  93. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  94. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  95. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  96. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  97. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  98. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [access public]
  99. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.832541 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [access public]
  100. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.833589 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  101. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  102. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  103. FROM pg_attribute f
  104. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  105. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  106. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  107. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  108. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  109. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  110. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [upload public]
  111. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.840621 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [upload public]
  112. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.841790 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  113. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  114. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  115. FROM pg_attribute f
  116. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  117. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  118. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  119. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  120. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  121. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  122. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [watch public]
  123. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.849018 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [watch public]
  124. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.850356 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  125. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  126. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  127. FROM pg_attribute f
  128. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  129. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  130. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  131. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  132. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  133. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  134. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [star public]
  135. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.857514 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [star public]
  136. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.859049 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  137. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  138. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  139. FROM pg_attribute f
  140. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  141. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  142. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  143. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  144. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  145. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  146. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [follow public]
  147. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.866570 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [follow public]
  148. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.868213 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  149. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  150. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  151. FROM pg_attribute f
  152. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  153. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  154. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  155. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  156. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  157. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  158. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [action public]
  159. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.876412 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [action public]
  160. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.877553 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  161. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  162. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  163. FROM pg_attribute f
  164. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  165. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  166. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  167. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  168. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  169. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  170. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [issue public]
  171. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.885909 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [issue public]
  172. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.887154 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  173. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  174. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  175. FROM pg_attribute f
  176. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  177. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  178. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  179. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  180. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  181. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  182. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [pull_request public]
  183. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.894867 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [pull_request public]
  184. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.896409 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  185. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  186. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  187. FROM pg_attribute f
  188. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  189. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  190. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  191. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  192. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  193. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  194. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [comment public]
  195. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.904630 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [comment public]
  196. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.905668 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  197. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  198. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  199. FROM pg_attribute f
  200. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  201. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  202. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  203. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  204. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  205. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  206. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [attachment public]
  207. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.913263 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [attachment public]
  208. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.915048 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  209. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  210. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  211. FROM pg_attribute f
  212. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  213. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  214. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  215. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  216. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  217. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  218. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [issue_user public]
  219. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.924464 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [issue_user public]
  220. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.925851 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  221. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  222. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  223. FROM pg_attribute f
  224. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  225. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  226. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  227. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  228. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  229. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  230. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [label public]
  231. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.933172 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [label public]
  232. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.934284 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  233. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  234. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  235. FROM pg_attribute f
  236. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  237. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  238. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  239. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  240. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  241. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  242. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [issue_label public]
  243. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.941730 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [issue_label public]
  244. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.943363 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  245. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  246. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  247. FROM pg_attribute f
  248. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  249. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  250. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  251. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  252. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  253. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  254. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [milestone public]
  255. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.951016 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [milestone public]
  256. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.952394 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  257. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  258. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  259. FROM pg_attribute f
  260. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  261. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  262. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  263. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  264. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  265. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  266. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [mirror public]
  267. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.960436 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [mirror public]
  268. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.961583 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  269. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  270. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  271. FROM pg_attribute f
  272. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  273. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  274. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  275. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  276. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  277. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  278. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [release public]
  279. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.969555 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [release public]
  280. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.970552 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  281. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  282. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  283. FROM pg_attribute f
  284. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  285. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  286. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  287. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  288. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  289. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  290. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [login_source public]
  291. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.977976 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [login_source public]
  292. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.979032 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  293. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  294. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  295. FROM pg_attribute f
  296. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  297. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  298. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  299. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  300. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  301. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  302. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [webhook public]
  303. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.986717 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [webhook public]
  304. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.987823 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  305. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  306. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  307. FROM pg_attribute f
  308. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  309. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  310. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  311. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  312. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  313. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  314. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [hook_task public]
  315. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.995845 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [hook_task public]
  316. 2018/11/04 21:00:37 [xorm] [info] 2018/11/04 21:00:37.996939 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  317. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  318. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  319. FROM pg_attribute f
  320. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  321. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  322. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  323. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  324. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  325. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  326. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [protect_branch public]
  327. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.004455 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [protect_branch public]
  328. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.005478 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  329. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  330. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  331. FROM pg_attribute f
  332. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  333. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  334. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  335. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  336. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  337. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  338. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [protect_branch_whitelist public]
  339. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.012934 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [protect_branch_whitelist public]
  340. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.014084 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  341. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  342. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  343. FROM pg_attribute f
  344. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  345. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  346. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  347. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  348. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  349. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  350. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [team public]
  351. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.021542 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [team public]
  352. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.022668 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  353. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  354. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  355. FROM pg_attribute f
  356. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  357. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  358. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  359. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  360. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  361. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  362. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [org_user public]
  363. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.030114 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [org_user public]
  364. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.031227 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  365. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  366. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  367. FROM pg_attribute f
  368. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  369. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  370. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  371. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  372. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  373. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  374. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [team_user public]
  375. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.038537 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [team_user public]
  376. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.040048 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  377. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  378. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  379. FROM pg_attribute f
  380. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  381. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  382. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  383. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  384. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  385. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  386. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [team_repo public]
  387. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.049892 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [team_repo public]
  388. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.051299 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  389. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  390. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  391. FROM pg_attribute f
  392. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  393. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  394. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  395. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  396. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  397. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  398. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [notice public]
  399. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.061514 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [notice public]
  400. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.062958 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  401. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  402. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  403. FROM pg_attribute f
  404. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  405. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  406. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  407. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  408. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  409. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  410. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [email_address public]
  411. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.070942 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [email_address public]
  412. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.072412 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  413. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  414. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  415. FROM pg_attribute f
  416. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  417. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  418. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  419. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  420. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  421. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  422. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [repository_label public]
  423. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.079649 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [repository_label public]
  424. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.080632 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  425. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  426. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  427. FROM pg_attribute f
  428. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  429. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  430. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  431. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  432. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  433. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  434. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [repository_repo_label public]
  435. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.087593 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [repository_repo_label public]
  436. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.088696 [SQL] SELECT column_name, column_default, is_nullable, data_type, character_maximum_length, numeric_precision, numeric_precision_radix ,
  437. CASE WHEN p.contype = 'p' THEN true ELSE false END AS primarykey,
  438. CASE WHEN p.contype = 'u' THEN true ELSE false END AS uniquekey
  439. FROM pg_attribute f
  440. JOIN pg_class c ON c.oid = f.attrelid JOIN pg_type t ON t.oid = f.atttypid
  441. LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
  442. LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
  443. LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
  444. LEFT JOIN pg_class AS g ON p.confrelid = g.oid
  445. LEFT JOIN INFORMATION_SCHEMA.COLUMNS s ON s.column_name=f.attname AND c.relname=s.table_name
  446. WHERE c.relkind = 'r'::char AND c.relname = $1 AND s.table_schema = $2 AND f.attnum > 0 ORDER BY f.attnum; [user public]
  447. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.099052 [SQL] SELECT indexname, indexdef FROM pg_indexes WHERE tablename=$1 AND schemaname=$2 [user public]
  448. 2018/11/04 21:00:38 [xorm] [warn] 2018/11/04 21:00:38.100469 Table user Column max_repo_creation db default is '-1'::integer, struct default is -1
  449. 2018/11/04 21:00:38 [xorm] [warn] 2018/11/04 21:00:38.101935 Table user has column company_name but struct has not related field
  450. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.106237 [SQL] SELECT repo.id FROM "repository" repo WHERE repo.num_watches!=(SELECT COUNT(*) FROM "watch" WHERE repo_id=repo.id)
  451. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.106529 [SQL] SELECT "id", "repo_id", "hook_id", "uuid", "type", "url", "signature", "payload_content", "content_type", "event_type", "is_ssl", "is_delivered", "delivered", "is_succeed", "request_content", "response_content" FROM "hook_task" WHERE (is_delivered = $1) []interface {}{false}
  452. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.106670 [SQL] SELECT "id", "type", "status", "issue_id", "index", "head_repo_id", "base_repo_id", "head_user_name", "head_branch", "base_branch", "merge_base", "has_merged", "merged_commit_id", "merger_id", "merged_unix" FROM "pull_request" WHERE "status"=$1 []interface {}{1}
  453. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.108402 [SQL] SELECT repo.id FROM "repository" repo WHERE repo.num_stars!=(SELECT COUNT(*) FROM "star" WHERE repo_id=repo.id)
  454. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.109603 [SQL] SELECT label.id FROM "label" WHERE label.num_issues!=(SELECT COUNT(*) FROM "issue_label" WHERE label_id=label.id)
  455. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.110244 [SQL] SELECT "user".id FROM "user" WHERE "user".num_repos!=(SELECT COUNT(*) FROM "repository" WHERE owner_id="user".id)
  456. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.111075 [SQL] SELECT "issue".id FROM "issue" WHERE "issue".num_comments!=(SELECT COUNT(*) FROM "comment" WHERE issue_id="issue".id AND type=0)
  457. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.111969 [SQL] SELECT repo.id FROM "repository" repo WHERE repo.num_closed_issues!=(SELECT COUNT(*) FROM "issue" WHERE repo_id=repo.id AND is_closed=$1 AND is_pull=$2) []interface {}{true, false}
  458. 2018/11/04 21:00:38 [xorm] [info] 2018/11/04 21:00:38.113173 [SQL] SELECT repo.id FROM "repository" repo WHERE repo.num_forks!=(SELECT COUNT(*) FROM "repository" WHERE fork_id=repo.id)
  459. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.818675 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"yoginth"}
  460. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.833870 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  461. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.835560 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  462. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.836507 [SQL] SELECT DISTINCT "org_id" FROM "org_user" WHERE (uid = $1) []interface {}{1}
  463. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.837615 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (type = $1) AND "id" IN ($2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22,$23,$24,$25,$26,$27,$28,$29,$30) []interface {}{1, 29, 4, 10, 9, 7, 38, 15, 6, 26, 12, 24, 19, 25, 30, 21, 14, 17, 20, 22, 28, 13, 5, 18, 2, 16, 27, 23, 11, 8}
  464. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.848920 [SQL] SELECT "id", "user_id", "op_type", "act_user_id", "act_user_name", "repo_id", "repo_user_name", "repo_name", "ref_name", "is_private", "content", "created_unix" FROM "action" WHERE (user_id = $1) ORDER BY "id" DESC LIMIT 20 []interface {}{1}
  465. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.850618 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  466. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.851566 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"yoginth"}
  467. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.852552 [SQL] SELECT * FROM "repository" INNER JOIN access ON access.user_id = $1 AND access.repo_id = repository.id WHERE (owner_id !=$2 ) ORDER BY "updated_unix" DESC LIMIT 15 []interface {}{1, 1}
  468. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.854112 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (id > 0) AND "id" IN ($1) []interface {}{2}
  469. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.854972 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (id > 0) AND 0=1
  470. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.855657 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id=$1) ORDER BY "updated_unix" DESC LIMIT 5 []interface {}{1}
  471. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.857016 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id = $1) AND (is_mirror = $2) []interface {}{1, true}
  472. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.857744 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (id > 0) AND "repo_id" IN ($1) []interface {}{24}
  473. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.859843 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{24}
  474. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.861107 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  475. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.921762 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  476. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.922810 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  477. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.923411 [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  478. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.924073 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  479. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.926720 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  480. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.927495 [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  481. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.928117 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  482. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.929191 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  483. 2018/11/04 21:00:40 [xorm] [info] 2018/11/04 21:00:40.938588 [SQL] SELECT count(*) FROM "org_user" WHERE (uid=$1) []interface {}{1}
  484. 2018/11/04 21:01:05 [xorm] [info] 2018/11/04 21:01:05.078829 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  485. 2018/11/04 21:01:05 [xorm] [info] 2018/11/04 21:01:05.080160 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  486. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.637400 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  487. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.640525 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  488. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.642084 [SQL] SELECT * FROM "repository" AS "repo" INNER JOIN collaboration ON collaboration.repo_id = repo.id WHERE (collaboration.user_id = $1) []interface {}{1}
  489. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.643652 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id = $1) []interface {}{1}
  490. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.647676 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (id > 0) AND "id" IN ($1) []interface {}{1}
  491. 2018/11/04 21:01:07 [xorm] [info] 2018/11/04 21:01:07.649306 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (id > 0) AND 0=1
  492. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.483092 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  493. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.486008 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  494. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.488273 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  495. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.490310 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  496. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.492310 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  497. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.494524 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  498. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.496459 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  499. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.497798 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  500. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.503471 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  501. 2018/11/04 21:03:40 [xorm] [info] 2018/11/04 21:03:40.504259 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  502. 2018/11/04 21:03:43 [xorm] [info] 2018/11/04 21:03:43.118905 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  503. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.645219 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  504. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.650288 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  505. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.651840 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  506. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.654020 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  507. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.655073 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  508. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.656504 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  509. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.657274 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  510. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.658521 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  511. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.662324 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  512. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.663238 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  513. 2018/11/04 21:03:51 [xorm] [info] 2018/11/04 21:03:51.820625 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  514. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.221474 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  515. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.223176 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  516. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.224881 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  517. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.226434 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  518. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.227972 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  519. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.230486 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  520. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.231551 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  521. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.234961 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  522. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.245876 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  523. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.247776 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  524. 2018/11/04 21:03:59 [xorm] [info] 2018/11/04 21:03:59.516417 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  525. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.336815 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  526. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.340138 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  527. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.342536 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  528. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.344122 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  529. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.345855 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  530. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.349236 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  531. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.350289 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  532. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.351823 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  533. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.493079 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  534. 2018/11/04 21:04:58 [xorm] [info] 2018/11/04 21:04:58.495972 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  535. 2018/11/04 21:05:03 [xorm] [info] 2018/11/04 21:05:03.678598 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  536. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.904779 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  537. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.952717 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  538. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.955752 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  539. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.957626 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  540. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.959122 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  541. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.961920 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  542. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.963077 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  543. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.964814 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  544. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.971366 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  545. 2018/11/04 21:06:08 [xorm] [info] 2018/11/04 21:06:08.972090 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  546. 2018/11/04 21:06:09 [xorm] [info] 2018/11/04 21:06:09.295835 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  547. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.087542 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  548. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.092424 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  549. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.095746 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  550. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.098646 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  551. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.101349 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  552. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.103650 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  553. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.105490 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  554. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.109527 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  555. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.116735 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  556. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.118733 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  557. 2018/11/04 21:06:33 [xorm] [info] 2018/11/04 21:06:33.325039 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  558. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.981281 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  559. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.985564 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  560. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.987502 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  561. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.988884 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  562. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.990265 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  563. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.992441 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  564. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.994748 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  565. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.995759 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  566. 2018/11/04 21:07:08 [xorm] [info] 2018/11/04 21:07:08.999249 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  567. 2018/11/04 21:07:09 [xorm] [info] 2018/11/04 21:07:09.002261 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  568. 2018/11/04 21:07:09 [xorm] [info] 2018/11/04 21:07:09.140464 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  569. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.851540 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  570. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.852977 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  571. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.854317 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  572. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.855763 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  573. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.856900 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  574. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.857902 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  575. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.858421 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  576. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.860675 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  577. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.864230 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  578. 2018/11/04 21:07:50 [xorm] [info] 2018/11/04 21:07:50.866236 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  579. 2018/11/04 21:07:51 [xorm] [info] 2018/11/04 21:07:51.009880 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  580. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.014993 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  581. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.015990 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  582. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.016733 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  583. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.017595 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  584. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.018736 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  585. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.019540 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  586. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.019989 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  587. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.020683 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  588. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.023511 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  589. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.024151 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  590. 2018/11/04 21:08:01 [xorm] [info] 2018/11/04 21:08:01.155266 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  591. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.875321 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  592. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.876757 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  593. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.879045 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  594. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.880556 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  595. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.882273 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  596. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.883589 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  597. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.884972 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  598. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.888039 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  599. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.895032 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  600. 2018/11/04 21:08:17 [xorm] [info] 2018/11/04 21:08:17.895788 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  601. 2018/11/04 21:08:18 [xorm] [info] 2018/11/04 21:08:18.057222 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  602. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.787953 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  603. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.792248 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  604. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.795325 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  605. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.797953 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  606. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.800659 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  607. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.802178 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  608. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.803393 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  609. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.804793 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  610. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.809285 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  611. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.810171 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  612. 2018/11/04 21:08:49 [xorm] [info] 2018/11/04 21:08:49.968984 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  613. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.670997 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  614. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.674237 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  615. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.675796 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  616. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.677148 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  617. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.678714 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  618. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.680711 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  619. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.682214 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  620. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.683327 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  621. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.689042 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  622. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.689955 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  623. 2018/11/04 21:09:20 [xorm] [info] 2018/11/04 21:09:20.869111 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  624. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.844448 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  625. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.845737 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  626. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.846813 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  627. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.847768 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  628. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.848596 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  629. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.849693 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  630. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.850398 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  631. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.851650 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  632. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.855609 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  633. 2018/11/04 21:09:29 [xorm] [info] 2018/11/04 21:09:29.856231 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  634. 2018/11/04 21:09:30 [xorm] [info] 2018/11/04 21:09:30.034317 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  635. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.690630 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  636. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.697806 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  637. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.704186 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  638. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.709166 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  639. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.714791 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  640. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.718231 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  641. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.720338 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  642. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.723599 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  643. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.740479 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  644. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.743653 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  645. 2018/11/04 21:09:35 [xorm] [info] 2018/11/04 21:09:35.940707 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  646. 2018/11/04 21:10:38 [xorm] [info] 2018/11/04 21:10:38.000248 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (next_update_unix<=$1) []interface {}{1541346038}
  647. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.613952 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  648. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.618326 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  649. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.620062 [SQL] SELECT DISTINCT "org_id" FROM "org_user" WHERE (uid = $1) []interface {}{1}
  650. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.621227 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (type = $1) AND "id" IN ($2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22,$23,$24,$25,$26,$27,$28,$29,$30) []interface {}{1, 29, 4, 10, 9, 7, 38, 15, 6, 26, 12, 24, 19, 25, 30, 21, 14, 17, 20, 22, 28, 13, 5, 18, 2, 16, 27, 23, 11, 8}
  651. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.627592 [SQL] SELECT "id", "user_id", "op_type", "act_user_id", "act_user_name", "repo_id", "repo_user_name", "repo_name", "ref_name", "is_private", "content", "created_unix" FROM "action" WHERE (user_id = $1) ORDER BY "id" DESC LIMIT 20 []interface {}{1}
  652. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.629425 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  653. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.630600 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"yoginth"}
  654. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.632026 [SQL] SELECT * FROM "repository" INNER JOIN access ON access.user_id = $1 AND access.repo_id = repository.id WHERE (owner_id !=$2 ) ORDER BY "updated_unix" DESC LIMIT 15 []interface {}{1, 1}
  655. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.633955 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (id > 0) AND "id" IN ($1) []interface {}{2}
  656. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.634992 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (id > 0) AND 0=1
  657. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.635493 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id=$1) ORDER BY "updated_unix" DESC LIMIT 5 []interface {}{1}
  658. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.637021 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id = $1) AND (is_mirror = $2) []interface {}{1, true}
  659. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.637977 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (id > 0) AND "repo_id" IN ($1) []interface {}{24}
  660. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.638719 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{24}
  661. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.639695 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  662. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.687471 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  663. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.688539 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  664. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.689110 [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  665. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.689591 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  666. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.691158 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  667. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.691907 [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@icloud.com"}
  668. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.692422 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  669. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.693856 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  670. 2018/11/04 21:17:09 [xorm] [info] 2018/11/04 21:17:09.698272 [SQL] SELECT count(*) FROM "org_user" WHERE (uid=$1) []interface {}{1}
  671. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.787520 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  672. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.790965 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  673. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.793963 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"gitote"}
  674. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.797505 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{2, "gitote"}
  675. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.799794 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  676. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.803231 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE "repo_id"=$1 LIMIT 1 []interface {}{11}
  677. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.804823 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE "id"=$1 LIMIT 1 []interface {}{11}
  678. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.807799 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{2}
  679. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.819008 [SQL] SELECT "id", "user_id", "repo_id" FROM "watch" WHERE "user_id"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  680. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.821078 [SQL] SELECT "id", "uid", "repo_id" FROM "star" WHERE "uid"=$1 AND "repo_id"=$2 LIMIT 1 []interface {}{1, 11}
  681. 2018/11/04 21:17:11 [xorm] [info] 2018/11/04 21:17:11.997999 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"yoginth@protonmail.com"}
  682. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.772067 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  683. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.774068 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  684. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.775760 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"yoginth"}
  685. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.778897 [SQL] SELECT * FROM "user" INNER JOIN "org_user" ON "org_user".org_id="user".id WHERE ("org_user".uid=$1) []interface {}{1}
  686. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.788728 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id=$1) ORDER BY "updated_unix" DESC LIMIT 15 []interface {}{1}
  687. 2018/11/04 21:18:40 [xorm] [info] 2018/11/04 21:18:40.793379 [SQL] SELECT count(*) FROM "repository" WHERE (id > 0) AND (owner_id = $1) []interface {}{1}
  688. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.987842 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  689. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.989947 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  690. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.991607 [SQL] SELECT count(*) FROM "user" WHERE (type=0)
  691. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.992382 [SQL] SELECT count(*) FROM "user" WHERE (type=1)
  692. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.993051 [SQL] SELECT count(*) FROM "public_key"
  693. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.993941 [SQL] SELECT count(*) FROM "repository" WHERE (id > 0)
  694. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.994482 [SQL] SELECT count(*) FROM "watch"
  695. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.994846 [SQL] SELECT count(*) FROM "star"
  696. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.995267 [SQL] SELECT count(*) FROM "action"
  697. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.996007 [SQL] SELECT count(*) FROM "access"
  698. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.996548 [SQL] SELECT count(*) FROM "issue"
  699. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.997095 [SQL] SELECT count(*) FROM "comment"
  700. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.997895 [SQL] SELECT count(*) FROM "follow"
  701. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.998702 [SQL] SELECT count(*) FROM "mirror"
  702. 2018/11/04 21:18:42 [xorm] [info] 2018/11/04 21:18:42.999564 [SQL] SELECT count(*) FROM "release"
  703. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.000348 [SQL] SELECT count(*) FROM "login_source"
  704. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.001138 [SQL] SELECT count(*) FROM "webhook"
  705. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.001885 [SQL] SELECT count(*) FROM "milestone"
  706. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.003111 [SQL] SELECT count(*) FROM "label"
  707. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.003637 [SQL] SELECT count(*) FROM "hook_task"
  708. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.004164 [SQL] SELECT count(*) FROM "team"
  709. 2018/11/04 21:18:43 [xorm] [info] 2018/11/04 21:18:43.005925 [SQL] SELECT count(*) FROM "attachment"
  710. 2018/11/04 21:18:46 [xorm] [info] 2018/11/04 21:18:46.664424 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  711. 2018/11/04 21:18:46 [xorm] [info] 2018/11/04 21:18:46.671406 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  712. 2018/11/04 21:18:46 [xorm] [info] 2018/11/04 21:18:46.679155 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE (type=0) ORDER BY "id" ASC LIMIT 50
  713. 2018/11/04 21:18:46 [xorm] [info] 2018/11/04 21:18:46.702744 [SQL] SELECT count(*) FROM "user" WHERE (type=0)
  714. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.807773 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  715. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.809805 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "id"=$1 LIMIT 1 []interface {}{1}
  716. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.811222 [SQL] SELECT "id", "lower_name", "name", "full_name", "company", "email", "passwd", "login_type", "login_source", "login_name", "type", "location", "website", "theme_color", "rands", "salt", "created_unix", "updated_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_beta", "show_sponsors", "is_staff", "is_admin", "allow_git_hook", "allow_import_local", "prohibit_login", "is_verified", "is_maker", "is_bug_hunter", "twitter", "linkedin", "github", "devto", "stackoverflow", "reddit", "telegram", "codepen", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "staff_notes" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"yoginths"}
  717. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.812546 [SQL] SELECT * FROM "user" INNER JOIN "org_user" ON "org_user".org_id="user".id WHERE ("org_user".uid=$1) []interface {}{36}
  718. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.814144 [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "size", "use_custom_avatar", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "enable_wiki", "allow_public_wiki", "enable_external_wiki", "external_wiki_url", "enable_issues", "allow_public_issues", "enable_external_tracker", "external_tracker_url", "external_tracker_format", "external_tracker_style", "enable_pulls", "pulls_ignore_whitespace", "pulls_allow_rebase", "is_fork", "fork_id", "created_unix", "updated_unix" FROM "repository" WHERE (owner_id=$1) ORDER BY "updated_unix" DESC LIMIT 15 []interface {}{36}
  719. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.815382 [SQL] SELECT count(*) FROM "repository" WHERE (id > 0) AND (owner_id = $1) []interface {}{36}
  720. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.885133 [SQL] SELECT "id", "user_id", "follow_id" FROM "follow" WHERE "user_id"=$1 AND "follow_id"=$2 LIMIT 1 []interface {}{1, 36}
  721. 2018/11/04 21:19:35 [xorm] [info] 2018/11/04 21:19:35.885937 [SQL] SELECT "id", "user_id", "follow_id" FROM "follow" WHERE "user_id"=$1 AND "follow_id"=$2 LIMIT 1 []interface {}{1, 36}
  722. 2018/11/04 21:20:38 [xorm] [info] 2018/11/04 21:20:38.000559 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (next_update_unix<=$1) []interface {}{1541346638}
  723. 2018/11/04 21:30:38 [xorm] [info] 2018/11/04 21:30:38.002510 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (next_update_unix<=$1) []interface {}{1541347238}
  724. 2018/11/04 21:40:38 [xorm] [info] 2018/11/04 21:40:38.000999 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (next_update_unix<=$1) []interface {}{1541347838}
  725. 2018/11/05 12:34:31 [xorm] [info] 2018/11/05 12:34:31.997183 [SQL] SELECT "id", "repo_id", "interval", "enable_prune", "updated_unix", "next_update_unix" FROM "mirror" WHERE (next_update_unix<=$1) []interface {}{1541401471}