Advertisement
Guest User

Untitled

a guest
Aug 28th, 2017
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.46 KB | None | 0 0
  1. [2017-08-28 21:22:38,343] DEBUG: (0.003)
  2. SELECT c.relname, c.relkind
  3. FROM pg_catalog.pg_class c
  4. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  5. WHERE c.relkind IN ('r', 'v')
  6. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  7. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  8. [2017-08-28 21:22:38,343] DEBUG: (0.003)
  9. SELECT c.relname, c.relkind
  10. FROM pg_catalog.pg_class c
  11. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  12. WHERE c.relkind IN ('r', 'v')
  13. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  14. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  15. [2017-08-28 21:22:38,348] DEBUG: (0.001) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  16. [2017-08-28 21:22:38,348] DEBUG: (0.001) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  17. [2017-08-28 21:22:38,353] DEBUG: (0.002)
  18. SELECT c.relname, c.relkind
  19. FROM pg_catalog.pg_class c
  20. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  21. WHERE c.relkind IN ('r', 'v')
  22. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  23. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  24. [2017-08-28 21:22:38,353] DEBUG: (0.002)
  25. SELECT c.relname, c.relkind
  26. FROM pg_catalog.pg_class c
  27. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  28. WHERE c.relkind IN ('r', 'v')
  29. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  30. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  31. [2017-08-28 21:22:38,355] DEBUG: (0.000) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  32. [2017-08-28 21:22:38,355] DEBUG: (0.000) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  33. Operations to perform:
  34. Target specific migration: 0059_add_yes_no_questions, from evaluation
  35. Running migrations:
  36. Rendering model states... DONE
  37. Unapplying evaluation.0060_replace_textanswer_id_with_uuid...[2017-08-28 21:22:38,765] DEBUG: (0.003)
  38. SELECT
  39. c.conname,
  40. array(
  41. SELECT attname
  42. FROM (
  43. SELECT unnest(c.conkey) AS colid,
  44. generate_series(1, array_length(c.conkey, 1)) AS arridx
  45. ) AS cols
  46. JOIN pg_attribute AS ca ON cols.colid = ca.attnum
  47. WHERE ca.attrelid = c.conrelid
  48. ORDER BY cols.arridx
  49. ),
  50. c.contype,
  51. (SELECT fkc.relname || '.' || fka.attname
  52. FROM pg_attribute AS fka
  53. JOIN pg_class AS fkc ON fka.attrelid = fkc.oid
  54. WHERE fka.attrelid = c.confrelid AND fka.attnum = c.confkey[1]),
  55. cl.reloptions
  56. FROM pg_constraint AS c
  57. JOIN pg_class AS cl ON c.conrelid = cl.oid
  58. JOIN pg_namespace AS ns ON cl.relnamespace = ns.oid
  59. WHERE ns.nspname = 'public' AND cl.relname = 'evaluation_textanswer'
  60. ; args=['public', 'evaluation_textanswer']
  61. [2017-08-28 21:22:38,765] DEBUG: (0.003)
  62. SELECT
  63. c.conname,
  64. array(
  65. SELECT attname
  66. FROM (
  67. SELECT unnest(c.conkey) AS colid,
  68. generate_series(1, array_length(c.conkey, 1)) AS arridx
  69. ) AS cols
  70. JOIN pg_attribute AS ca ON cols.colid = ca.attnum
  71. WHERE ca.attrelid = c.conrelid
  72. ORDER BY cols.arridx
  73. ),
  74. c.contype,
  75. (SELECT fkc.relname || '.' || fka.attname
  76. FROM pg_attribute AS fka
  77. JOIN pg_class AS fkc ON fka.attrelid = fkc.oid
  78. WHERE fka.attrelid = c.confrelid AND fka.attnum = c.confkey[1]),
  79. cl.reloptions
  80. FROM pg_constraint AS c
  81. JOIN pg_class AS cl ON c.conrelid = cl.oid
  82. JOIN pg_namespace AS ns ON cl.relnamespace = ns.oid
  83. WHERE ns.nspname = 'public' AND cl.relname = 'evaluation_textanswer'
  84. ; args=['public', 'evaluation_textanswer']
  85. [2017-08-28 21:22:38,769] DEBUG: (0.004)
  86. SELECT
  87. indexname, array_agg(attname), indisunique, indisprimary,
  88. array_agg(ordering), amname, exprdef, s2.attoptions
  89. FROM (
  90. SELECT
  91. c2.relname as indexname, idx.*, attr.attname, am.amname,
  92. CASE
  93. WHEN idx.indexprs IS NOT NULL THEN
  94. pg_get_indexdef(idx.indexrelid)
  95. END AS exprdef,
  96. CASE am.amname
  97. WHEN 'btree' THEN
  98. CASE (option & 1)
  99. WHEN 1 THEN 'DESC' ELSE 'ASC'
  100. END
  101. END as ordering,
  102. c2.reloptions as attoptions
  103. FROM (
  104. SELECT
  105. *, unnest(i.indkey) as key, unnest(i.indoption) as option
  106. FROM pg_index i
  107. ) idx
  108. LEFT JOIN pg_class c ON idx.indrelid = c.oid
  109. LEFT JOIN pg_class c2 ON idx.indexrelid = c2.oid
  110. LEFT JOIN pg_am am ON c2.relam = am.oid
  111. LEFT JOIN pg_attribute attr ON attr.attrelid = c.oid AND attr.attnum = idx.key
  112. WHERE c.relname = 'evaluation_textanswer'
  113. ) s2
  114. GROUP BY indexname, indisunique, indisprimary, amname, exprdef, attoptions;
  115. ; args=['evaluation_textanswer']
  116. [2017-08-28 21:22:38,769] DEBUG: (0.004)
  117. SELECT
  118. indexname, array_agg(attname), indisunique, indisprimary,
  119. array_agg(ordering), amname, exprdef, s2.attoptions
  120. FROM (
  121. SELECT
  122. c2.relname as indexname, idx.*, attr.attname, am.amname,
  123. CASE
  124. WHEN idx.indexprs IS NOT NULL THEN
  125. pg_get_indexdef(idx.indexrelid)
  126. END AS exprdef,
  127. CASE am.amname
  128. WHEN 'btree' THEN
  129. CASE (option & 1)
  130. WHEN 1 THEN 'DESC' ELSE 'ASC'
  131. END
  132. END as ordering,
  133. c2.reloptions as attoptions
  134. FROM (
  135. SELECT
  136. *, unnest(i.indkey) as key, unnest(i.indoption) as option
  137. FROM pg_index i
  138. ) idx
  139. LEFT JOIN pg_class c ON idx.indrelid = c.oid
  140. LEFT JOIN pg_class c2 ON idx.indexrelid = c2.oid
  141. LEFT JOIN pg_am am ON c2.relam = am.oid
  142. LEFT JOIN pg_attribute attr ON attr.attrelid = c.oid AND attr.attnum = idx.key
  143. WHERE c.relname = 'evaluation_textanswer'
  144. ) s2
  145. GROUP BY indexname, indisunique, indisprimary, amname, exprdef, attoptions;
  146. ; args=['evaluation_textanswer']
  147. [2017-08-28 21:22:38,770] DEBUG: ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_pk"; (params ())
  148. [2017-08-28 21:22:38,770] DEBUG: ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_pk"; (params ())
  149. [2017-08-28 21:22:38,772] DEBUG: (0.001) ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_pk"; args=()
  150. [2017-08-28 21:22:38,772] DEBUG: (0.001) ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_pk"; args=()
  151. [2017-08-28 21:22:38,773] DEBUG: ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_uniq"; (params ())
  152. [2017-08-28 21:22:38,773] DEBUG: ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_uniq"; (params ())
  153. [2017-08-28 21:22:38,774] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_uniq"; args=()
  154. [2017-08-28 21:22:38,774] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" DROP CONSTRAINT "evaluation_textanswer_id_fc520eb7_uniq"; args=()
  155. [2017-08-28 21:22:38,775] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" SET DEFAULT %s; (params [UUID('40513d79-51eb-4faa-b626-03440b247970')])
  156. [2017-08-28 21:22:38,775] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" SET DEFAULT %s; (params [UUID('40513d79-51eb-4faa-b626-03440b247970')])
  157. [2017-08-28 21:22:38,776] DEBUG: (0.001) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" SET DEFAULT '40513d79-51eb-4faa-b626-03440b247970'::uuid; args=[UUID('40513d79-51eb-4faa-b626-03440b247970')]
  158. [2017-08-28 21:22:38,776] DEBUG: (0.001) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" SET DEFAULT '40513d79-51eb-4faa-b626-03440b247970'::uuid; args=[UUID('40513d79-51eb-4faa-b626-03440b247970')]
  159. [2017-08-28 21:22:38,777] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" DROP DEFAULT; (params ())
  160. [2017-08-28 21:22:38,777] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" DROP DEFAULT; (params ())
  161. [2017-08-28 21:22:38,778] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" DROP DEFAULT; args=()
  162. [2017-08-28 21:22:38,778] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "id" DROP DEFAULT; args=()
  163. [2017-08-28 21:22:38,781] DEBUG: (0.002)
  164. SELECT
  165. c.conname,
  166. array(
  167. SELECT attname
  168. FROM (
  169. SELECT unnest(c.conkey) AS colid,
  170. generate_series(1, array_length(c.conkey, 1)) AS arridx
  171. ) AS cols
  172. JOIN pg_attribute AS ca ON cols.colid = ca.attnum
  173. WHERE ca.attrelid = c.conrelid
  174. ORDER BY cols.arridx
  175. ),
  176. c.contype,
  177. (SELECT fkc.relname || '.' || fka.attname
  178. FROM pg_attribute AS fka
  179. JOIN pg_class AS fkc ON fka.attrelid = fkc.oid
  180. WHERE fka.attrelid = c.confrelid AND fka.attnum = c.confkey[1]),
  181. cl.reloptions
  182. FROM pg_constraint AS c
  183. JOIN pg_class AS cl ON c.conrelid = cl.oid
  184. JOIN pg_namespace AS ns ON cl.relnamespace = ns.oid
  185. WHERE ns.nspname = 'public' AND cl.relname = 'evaluation_textanswer'
  186. ; args=['public', 'evaluation_textanswer']
  187. [2017-08-28 21:22:38,781] DEBUG: (0.002)
  188. SELECT
  189. c.conname,
  190. array(
  191. SELECT attname
  192. FROM (
  193. SELECT unnest(c.conkey) AS colid,
  194. generate_series(1, array_length(c.conkey, 1)) AS arridx
  195. ) AS cols
  196. JOIN pg_attribute AS ca ON cols.colid = ca.attnum
  197. WHERE ca.attrelid = c.conrelid
  198. ORDER BY cols.arridx
  199. ),
  200. c.contype,
  201. (SELECT fkc.relname || '.' || fka.attname
  202. FROM pg_attribute AS fka
  203. JOIN pg_class AS fkc ON fka.attrelid = fkc.oid
  204. WHERE fka.attrelid = c.confrelid AND fka.attnum = c.confkey[1]),
  205. cl.reloptions
  206. FROM pg_constraint AS c
  207. JOIN pg_class AS cl ON c.conrelid = cl.oid
  208. JOIN pg_namespace AS ns ON cl.relnamespace = ns.oid
  209. WHERE ns.nspname = 'public' AND cl.relname = 'evaluation_textanswer'
  210. ; args=['public', 'evaluation_textanswer']
  211. [2017-08-28 21:22:38,784] DEBUG: (0.002)
  212. SELECT
  213. indexname, array_agg(attname), indisunique, indisprimary,
  214. array_agg(ordering), amname, exprdef, s2.attoptions
  215. FROM (
  216. SELECT
  217. c2.relname as indexname, idx.*, attr.attname, am.amname,
  218. CASE
  219. WHEN idx.indexprs IS NOT NULL THEN
  220. pg_get_indexdef(idx.indexrelid)
  221. END AS exprdef,
  222. CASE am.amname
  223. WHEN 'btree' THEN
  224. CASE (option & 1)
  225. WHEN 1 THEN 'DESC' ELSE 'ASC'
  226. END
  227. END as ordering,
  228. c2.reloptions as attoptions
  229. FROM (
  230. SELECT
  231. *, unnest(i.indkey) as key, unnest(i.indoption) as option
  232. FROM pg_index i
  233. ) idx
  234. LEFT JOIN pg_class c ON idx.indrelid = c.oid
  235. LEFT JOIN pg_class c2 ON idx.indexrelid = c2.oid
  236. LEFT JOIN pg_am am ON c2.relam = am.oid
  237. LEFT JOIN pg_attribute attr ON attr.attrelid = c.oid AND attr.attnum = idx.key
  238. WHERE c.relname = 'evaluation_textanswer'
  239. ) s2
  240. GROUP BY indexname, indisunique, indisprimary, amname, exprdef, attoptions;
  241. ; args=['evaluation_textanswer']
  242. [2017-08-28 21:22:38,784] DEBUG: (0.002)
  243. SELECT
  244. indexname, array_agg(attname), indisunique, indisprimary,
  245. array_agg(ordering), amname, exprdef, s2.attoptions
  246. FROM (
  247. SELECT
  248. c2.relname as indexname, idx.*, attr.attname, am.amname,
  249. CASE
  250. WHEN idx.indexprs IS NOT NULL THEN
  251. pg_get_indexdef(idx.indexrelid)
  252. END AS exprdef,
  253. CASE am.amname
  254. WHEN 'btree' THEN
  255. CASE (option & 1)
  256. WHEN 1 THEN 'DESC' ELSE 'ASC'
  257. END
  258. END as ordering,
  259. c2.reloptions as attoptions
  260. FROM (
  261. SELECT
  262. *, unnest(i.indkey) as key, unnest(i.indoption) as option
  263. FROM pg_index i
  264. ) idx
  265. LEFT JOIN pg_class c ON idx.indrelid = c.oid
  266. LEFT JOIN pg_class c2 ON idx.indexrelid = c2.oid
  267. LEFT JOIN pg_am am ON c2.relam = am.oid
  268. LEFT JOIN pg_attribute attr ON attr.attrelid = c.oid AND attr.attnum = idx.key
  269. WHERE c.relname = 'evaluation_textanswer'
  270. ) s2
  271. GROUP BY indexname, indisunique, indisprimary, amname, exprdef, attoptions;
  272. ; args=['evaluation_textanswer']
  273. [2017-08-28 21:22:38,786] DEBUG: ALTER TABLE "evaluation_textanswer" RENAME COLUMN "id" TO "uuid"; (params ())
  274. [2017-08-28 21:22:38,786] DEBUG: ALTER TABLE "evaluation_textanswer" RENAME COLUMN "id" TO "uuid"; (params ())
  275. [2017-08-28 21:22:38,787] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" RENAME COLUMN "id" TO "uuid"; args=()
  276. [2017-08-28 21:22:38,787] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" RENAME COLUMN "id" TO "uuid"; args=()
  277. [2017-08-28 21:22:38,787] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" SET DEFAULT %s; (params [UUID('c203e8ce-f387-4e96-8ad7-a667b1892958')])
  278. [2017-08-28 21:22:38,787] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" SET DEFAULT %s; (params [UUID('c203e8ce-f387-4e96-8ad7-a667b1892958')])
  279. [2017-08-28 21:22:38,789] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" SET DEFAULT 'c203e8ce-f387-4e96-8ad7-a667b1892958'::uuid; args=[UUID('c203e8ce-f387-4e96-8ad7-a667b1892958')]
  280. [2017-08-28 21:22:38,789] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" SET DEFAULT 'c203e8ce-f387-4e96-8ad7-a667b1892958'::uuid; args=[UUID('c203e8ce-f387-4e96-8ad7-a667b1892958')]
  281. [2017-08-28 21:22:38,790] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP DEFAULT; (params ())
  282. [2017-08-28 21:22:38,790] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP DEFAULT; (params ())
  283. [2017-08-28 21:22:38,791] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP DEFAULT; args=()
  284. [2017-08-28 21:22:38,791] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP DEFAULT; args=()
  285. [2017-08-28 21:22:38,792] DEBUG: ALTER TABLE "evaluation_textanswer" ADD COLUMN "id" serial NOT NULL PRIMARY KEY; (params [])
  286. [2017-08-28 21:22:38,792] DEBUG: ALTER TABLE "evaluation_textanswer" ADD COLUMN "id" serial NOT NULL PRIMARY KEY; (params [])
  287. [2017-08-28 21:22:38,814] DEBUG: (0.021) ALTER TABLE "evaluation_textanswer" ADD COLUMN "id" serial NOT NULL PRIMARY KEY; args=[]
  288. [2017-08-28 21:22:38,814] DEBUG: (0.021) ALTER TABLE "evaluation_textanswer" ADD COLUMN "id" serial NOT NULL PRIMARY KEY; args=[]
  289. [2017-08-28 21:22:38,815] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP NOT NULL; (params [])
  290. [2017-08-28 21:22:38,815] DEBUG: ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP NOT NULL; (params [])
  291. [2017-08-28 21:22:38,816] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP NOT NULL; args=[]
  292. [2017-08-28 21:22:38,816] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" ALTER COLUMN "uuid" DROP NOT NULL; args=[]
  293. [2017-08-28 21:22:38,817] DEBUG: ALTER TABLE "evaluation_textanswer" DROP COLUMN "uuid" CASCADE; (params ())
  294. [2017-08-28 21:22:38,817] DEBUG: ALTER TABLE "evaluation_textanswer" DROP COLUMN "uuid" CASCADE; (params ())
  295. [2017-08-28 21:22:38,818] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" DROP COLUMN "uuid" CASCADE; args=()
  296. [2017-08-28 21:22:38,818] DEBUG: (0.000) ALTER TABLE "evaluation_textanswer" DROP COLUMN "uuid" CASCADE; args=()
  297. [2017-08-28 21:22:38,822] DEBUG: (0.001)
  298. SELECT c.relname, c.relkind
  299. FROM pg_catalog.pg_class c
  300. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  301. WHERE c.relkind IN ('r', 'v')
  302. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  303. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  304. [2017-08-28 21:22:38,822] DEBUG: (0.001)
  305. SELECT c.relname, c.relkind
  306. FROM pg_catalog.pg_class c
  307. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  308. WHERE c.relkind IN ('r', 'v')
  309. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  310. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  311. [2017-08-28 21:22:38,825] DEBUG: (0.001) DELETE FROM "django_migrations" WHERE ("django_migrations"."app" = 'evaluation' AND "django_migrations"."name" = '0060_replace_textanswer_id_with_uuid'); args=('evaluation', '0060_replace_textanswer_id_with_uuid')
  312. [2017-08-28 21:22:38,825] DEBUG: (0.001) DELETE FROM "django_migrations" WHERE ("django_migrations"."app" = 'evaluation' AND "django_migrations"."name" = '0060_replace_textanswer_id_with_uuid'); args=('evaluation', '0060_replace_textanswer_id_with_uuid')
  313. [2017-08-28 21:22:40,463] DEBUG: (0.003)
  314. SELECT c.relname, c.relkind
  315. FROM pg_catalog.pg_class c
  316. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  317. WHERE c.relkind IN ('r', 'v')
  318. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  319. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  320. [2017-08-28 21:22:40,463] DEBUG: (0.003)
  321. SELECT c.relname, c.relkind
  322. FROM pg_catalog.pg_class c
  323. LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
  324. WHERE c.relkind IN ('r', 'v')
  325. AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
  326. AND pg_catalog.pg_table_is_visible(c.oid); args=None
  327. [2017-08-28 21:22:40,468] DEBUG: (0.002) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  328. [2017-08-28 21:22:40,468] DEBUG: (0.002) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
  329. [2017-08-28 21:22:40,573] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'admin' AND "django_content_type"."model" = 'logentry'); args=('admin', 'logentry')
  330. [2017-08-28 21:22:40,573] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'admin' AND "django_content_type"."model" = 'logentry'); args=('admin', 'logentry')
  331. [2017-08-28 21:22:40,579] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (1) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(1,)
  332. [2017-08-28 21:22:40,579] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (1) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(1,)
  333. [2017-08-28 21:22:40,585] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'admin'; args=('admin',)
  334. [2017-08-28 21:22:40,585] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'admin'; args=('admin',)
  335. [2017-08-28 21:22:40,587] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'auth' AND "django_content_type"."model" = 'group'); args=('auth', 'group')
  336. [2017-08-28 21:22:40,587] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'auth' AND "django_content_type"."model" = 'group'); args=('auth', 'group')
  337. [2017-08-28 21:22:40,589] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'auth' AND "django_content_type"."model" = 'permission'); args=('auth', 'permission')
  338. [2017-08-28 21:22:40,589] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'auth' AND "django_content_type"."model" = 'permission'); args=('auth', 'permission')
  339. [2017-08-28 21:22:40,593] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (2, 3) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(2, 3)
  340. [2017-08-28 21:22:40,593] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (2, 3) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(2, 3)
  341. [2017-08-28 21:22:40,597] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'auth'; args=('auth',)
  342. [2017-08-28 21:22:40,597] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'auth'; args=('auth',)
  343. [2017-08-28 21:22:40,602] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'contenttypes' AND "django_content_type"."model" = 'contenttype'); args=('contenttypes', 'contenttype')
  344. [2017-08-28 21:22:40,602] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'contenttypes' AND "django_content_type"."model" = 'contenttype'); args=('contenttypes', 'contenttype')
  345. [2017-08-28 21:22:40,607] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (4) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(4,)
  346. [2017-08-28 21:22:40,607] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (4) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(4,)
  347. [2017-08-28 21:22:40,610] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'contenttypes'; args=('contenttypes',)
  348. [2017-08-28 21:22:40,610] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'contenttypes'; args=('contenttypes',)
  349. [2017-08-28 21:22:40,614] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'sessions' AND "django_content_type"."model" = 'session'); args=('sessions', 'session')
  350. [2017-08-28 21:22:40,614] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'sessions' AND "django_content_type"."model" = 'session'); args=('sessions', 'session')
  351. [2017-08-28 21:22:40,620] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (5) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(5,)
  352. [2017-08-28 21:22:40,620] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (5) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(5,)
  353. [2017-08-28 21:22:40,623] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'sessions'; args=('sessions',)
  354. [2017-08-28 21:22:40,623] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'sessions'; args=('sessions',)
  355. [2017-08-28 21:22:40,630] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'bootstrap3'; args=('bootstrap3',)
  356. [2017-08-28 21:22:40,630] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'bootstrap3'; args=('bootstrap3',)
  357. [2017-08-28 21:22:40,633] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'compressor'; args=('compressor',)
  358. [2017-08-28 21:22:40,633] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'compressor'; args=('compressor',)
  359. [2017-08-28 21:22:40,636] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'django_extensions'; args=('django_extensions',)
  360. [2017-08-28 21:22:40,636] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'django_extensions'; args=('django_extensions',)
  361. [2017-08-28 21:22:40,638] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'ratinganswercounter'); args=('evaluation', 'ratinganswercounter')
  362. [2017-08-28 21:22:40,638] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'ratinganswercounter'); args=('evaluation', 'ratinganswercounter')
  363. [2017-08-28 21:22:40,640] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'contribution'); args=('evaluation', 'contribution')
  364. [2017-08-28 21:22:40,640] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'contribution'); args=('evaluation', 'contribution')
  365. [2017-08-28 21:22:40,642] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'degree'); args=('evaluation', 'degree')
  366. [2017-08-28 21:22:40,642] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'degree'); args=('evaluation', 'degree')
  367. [2017-08-28 21:22:40,644] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'course'); args=('evaluation', 'course')
  368. [2017-08-28 21:22:40,644] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'course'); args=('evaluation', 'course')
  369. [2017-08-28 21:22:40,649] DEBUG: (0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'question'); args=('evaluation', 'question')
  370. [2017-08-28 21:22:40,649] DEBUG: (0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'question'); args=('evaluation', 'question')
  371. [2017-08-28 21:22:40,652] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'faqquestion'); args=('evaluation', 'faqquestion')
  372. [2017-08-28 21:22:40,652] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'faqquestion'); args=('evaluation', 'faqquestion')
  373. [2017-08-28 21:22:40,654] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'emailtemplate'); args=('evaluation', 'emailtemplate')
  374. [2017-08-28 21:22:40,654] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'emailtemplate'); args=('evaluation', 'emailtemplate')
  375. [2017-08-28 21:22:40,656] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'textanswer'); args=('evaluation', 'textanswer')
  376. [2017-08-28 21:22:40,656] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'textanswer'); args=('evaluation', 'textanswer')
  377. [2017-08-28 21:22:40,658] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'faqsection'); args=('evaluation', 'faqsection')
  378. [2017-08-28 21:22:40,658] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'faqsection'); args=('evaluation', 'faqsection')
  379. [2017-08-28 21:22:40,661] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'questionnaire'); args=('evaluation', 'questionnaire')
  380. [2017-08-28 21:22:40,661] DEBUG: (0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'questionnaire'); args=('evaluation', 'questionnaire')
  381. [2017-08-28 21:22:40,663] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'coursetype'); args=('evaluation', 'coursetype')
  382. [2017-08-28 21:22:40,663] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'coursetype'); args=('evaluation', 'coursetype')
  383. [2017-08-28 21:22:40,665] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'userprofile'); args=('evaluation', 'userprofile')
  384. [2017-08-28 21:22:40,665] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'userprofile'); args=('evaluation', 'userprofile')
  385. [2017-08-28 21:22:40,667] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'semester'); args=('evaluation', 'semester')
  386. [2017-08-28 21:22:40,667] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'evaluation' AND "django_content_type"."model" = 'semester'); args=('evaluation', 'semester')
  387. [2017-08-28 21:22:40,671] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18)
  388. [2017-08-28 21:22:40,671] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18)
  389. [2017-08-28 21:22:40,673] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'evaluation'; args=('evaluation',)
  390. [2017-08-28 21:22:40,673] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'evaluation'; args=('evaluation',)
  391. [2017-08-28 21:22:40,676] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointgranting'); args=('rewards', 'rewardpointgranting')
  392. [2017-08-28 21:22:40,676] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointgranting'); args=('rewards', 'rewardpointgranting')
  393. [2017-08-28 21:22:40,678] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointredemptionevent'); args=('rewards', 'rewardpointredemptionevent')
  394. [2017-08-28 21:22:40,678] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointredemptionevent'); args=('rewards', 'rewardpointredemptionevent')
  395. [2017-08-28 21:22:40,680] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'semesteractivation'); args=('rewards', 'semesteractivation')
  396. [2017-08-28 21:22:40,680] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'semesteractivation'); args=('rewards', 'semesteractivation')
  397. [2017-08-28 21:22:40,682] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointredemption'); args=('rewards', 'rewardpointredemption')
  398. [2017-08-28 21:22:40,682] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'rewards' AND "django_content_type"."model" = 'rewardpointredemption'); args=('rewards', 'rewardpointredemption')
  399. [2017-08-28 21:22:40,685] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (19, 20, 21, 22) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(19, 20, 21, 22)
  400. [2017-08-28 21:22:40,685] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (19, 20, 21, 22) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(19, 20, 21, 22)
  401. [2017-08-28 21:22:40,688] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'rewards'; args=('rewards',)
  402. [2017-08-28 21:22:40,688] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'rewards'; args=('rewards',)
  403. [2017-08-28 21:22:40,690] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'grades' AND "django_content_type"."model" = 'gradedocument'); args=('grades', 'gradedocument')
  404. [2017-08-28 21:22:40,690] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'grades' AND "django_content_type"."model" = 'gradedocument'); args=('grades', 'gradedocument')
  405. [2017-08-28 21:22:40,692] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'grades' AND "django_content_type"."model" = 'semestergradedownloadactivation'); args=('grades', 'semestergradedownloadactivation')
  406. [2017-08-28 21:22:40,692] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."app_label" = 'grades' AND "django_content_type"."model" = 'semestergradedownloadactivation'); args=('grades', 'semestergradedownloadactivation')
  407. [2017-08-28 21:22:40,696] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (24, 23) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(24, 23)
  408. [2017-08-28 21:22:40,696] DEBUG: (0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (24, 23) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(24, 23)
  409. [2017-08-28 21:22:40,699] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'grades'; args=('grades',)
  410. [2017-08-28 21:22:40,699] DEBUG: (0.000) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'grades'; args=('grades',)
  411. OK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement