Created
May 14, 2015 20:31
-
-
Save singingwolfboy/d1326dfcc62b8a8117ea to your computer and use it in GitHub Desktop.
Can't run syncdb
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% python manage.py lms syncdb --migrate --settings=cms.dev | |
Syncing... | |
DEBUG:django.db.backends:(0.000) | |
SELECT name FROM sqlite_master | |
WHERE type='table' AND NOT name='sqlite_sequence' | |
ORDER BY name; args=() | |
Creating tables ... | |
Creating table auth_permission | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "auth_permission" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"name" varchar(50) NOT NULL, | |
"content_type_id" integer NOT NULL, | |
"codename" varchar(100) NOT NULL, | |
UNIQUE ("content_type_id", "codename") | |
) | |
;; args=() | |
Creating table auth_group_permissions | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_group_permissions" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"group_id" integer NOT NULL, | |
"permission_id" integer NOT NULL REFERENCES "auth_permission" ("id"), | |
UNIQUE ("group_id", "permission_id") | |
) | |
;; args=() | |
Creating table auth_group | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_group" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"name" varchar(80) NOT NULL UNIQUE | |
) | |
;; args=() | |
Creating table auth_user_user_permissions | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_user_user_permissions" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"user_id" integer NOT NULL, | |
"permission_id" integer NOT NULL REFERENCES "auth_permission" ("id"), | |
UNIQUE ("user_id", "permission_id") | |
) | |
;; args=() | |
Creating table auth_user_groups | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_user_groups" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"user_id" integer NOT NULL, | |
"group_id" integer NOT NULL REFERENCES "auth_group" ("id"), | |
UNIQUE ("user_id", "group_id") | |
) | |
;; args=() | |
Creating table auth_user | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_user" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"username" varchar(30) NOT NULL UNIQUE, | |
"first_name" varchar(30) NOT NULL, | |
"last_name" varchar(30) NOT NULL, | |
"email" varchar(75) NOT NULL, | |
"password" varchar(128) NOT NULL, | |
"is_staff" bool NOT NULL, | |
"is_active" bool NOT NULL, | |
"is_superuser" bool NOT NULL, | |
"last_login" datetime NOT NULL, | |
"date_joined" datetime NOT NULL | |
) | |
;; args=() | |
Creating table django_content_type | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_content_type" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"name" varchar(100) NOT NULL, | |
"app_label" varchar(100) NOT NULL, | |
"model" varchar(100) NOT NULL, | |
UNIQUE ("app_label", "model") | |
) | |
;; args=() | |
Creating table django_session | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_session" ( | |
"session_key" varchar(40) NOT NULL PRIMARY KEY, | |
"session_data" text NOT NULL, | |
"expire_date" datetime NOT NULL | |
) | |
;; args=() | |
Creating table django_site | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_site" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"domain" varchar(100) NOT NULL, | |
"name" varchar(50) NOT NULL | |
) | |
;; args=() | |
Creating table south_migrationhistory | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "south_migrationhistory" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"app_name" varchar(255) NOT NULL, | |
"migration" varchar(255) NOT NULL, | |
"applied" datetime NOT NULL | |
) | |
;; args=() | |
Creating table circuit_servercircuit | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "circuit_servercircuit" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"name" varchar(32) NOT NULL UNIQUE, | |
"schematic" text NOT NULL | |
) | |
;; args=() | |
Creating table psychometrics_psychometricdata | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "psychometrics_psychometricdata" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"studentmodule_id" integer NOT NULL UNIQUE, | |
"done" bool NOT NULL, | |
"attempts" integer NOT NULL, | |
"checktimes" text | |
) | |
;; args=() | |
Creating table django_openid_auth_nonce | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_openid_auth_nonce" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"server_url" varchar(2047) NOT NULL, | |
"timestamp" integer NOT NULL, | |
"salt" varchar(40) NOT NULL | |
) | |
;; args=() | |
Creating table django_openid_auth_association | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_openid_auth_association" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"server_url" text NOT NULL, | |
"handle" varchar(255) NOT NULL, | |
"secret" text NOT NULL, | |
"issued" integer NOT NULL, | |
"lifetime" integer NOT NULL, | |
"assoc_type" text NOT NULL | |
) | |
;; args=() | |
Creating table django_openid_auth_useropenid | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_openid_auth_useropenid" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"user_id" integer NOT NULL REFERENCES "auth_user" ("id"), | |
"claimed_id" text NOT NULL UNIQUE, | |
"display_id" text NOT NULL | |
) | |
;; args=() | |
Creating table django_admin_log | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_admin_log" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"action_time" datetime NOT NULL, | |
"user_id" integer NOT NULL REFERENCES "auth_user" ("id"), | |
"content_type_id" integer REFERENCES "django_content_type" ("id"), | |
"object_id" text, | |
"object_repr" varchar(200) NOT NULL, | |
"action_flag" smallint unsigned NOT NULL, | |
"change_message" text NOT NULL | |
) | |
;; args=() | |
Creating table corsheaders_corsmodel | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "corsheaders_corsmodel" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"cors" varchar(255) NOT NULL | |
) | |
;; args=() | |
Creating table djpyfs_fsexpirations | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djpyfs_fsexpirations" ( | |
"id" integer NOT NULL PRIMARY KEY, | |
"module" varchar(382) NOT NULL, | |
"filename" varchar(382) NOT NULL, | |
"expires" bool NOT NULL, | |
"expiration" datetime NOT NULL, | |
UNIQUE ("module", "filename") | |
) | |
;; args=() | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = permission AND "django_content_type"."app_label" = auth ); args=('permission', 'auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (permission, auth, permission); args=[u'permission', 'auth', 'permission'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = group AND "django_content_type"."app_label" = auth ); args=('group', 'auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (group, auth, group); args=[u'group', 'auth', 'group'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = user AND "django_content_type"."app_label" = auth ); args=('user', 'auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user, auth, user); args=[u'user', 'auth', 'user'] | |
DEBUG:django.db.backends:(0.000) 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, 2, 3) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(1, 2, 3) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add permission AS "name", 1 AS "content_type_id", add_permission AS "codename" UNION ALL SELECT Can change permission, 1, change_permission UNION ALL SELECT Can delete permission, 1, delete_permission UNION ALL SELECT Can add group, 2, add_group UNION ALL SELECT Can change group, 2, change_group UNION ALL SELECT Can delete group, 2, delete_group UNION ALL SELECT Can add user, 3, add_user UNION ALL SELECT Can change user, 3, change_user UNION ALL SELECT Can delete user, 3, delete_user; args=(u'Can add permission', 1, u'add_permission', u'Can change permission', 1, u'change_permission', u'Can delete permission', 1, u'delete_permission', u'Can add group', 2, u'add_group', u'Can change group', 2, u'change_group', u'Can delete group', 2, u'delete_group', u'Can add user', 3, u'add_user', u'Can change user', 3, u'change_user', u'Can delete user', 3, u'delete_user') | |
You just installed Django's auth system, which means you don't have any superusers defined. | |
Would you like to create one now? (yes/no): no | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = auth ORDER BY "django_content_type"."name" ASC; args=('auth',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = contenttype AND "django_content_type"."app_label" = contenttypes ); args=('contenttype', 'contenttypes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (content type, contenttypes, contenttype); args=[u'content type', 'contenttypes', 'contenttype'] | |
DEBUG:django.db.backends:(0.000) 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,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add content type AS "name", 4 AS "content_type_id", add_contenttype AS "codename" UNION ALL SELECT Can change content type, 4, change_contenttype UNION ALL SELECT Can delete content type, 4, delete_contenttype; args=(u'Can add content type', 4, u'add_contenttype', u'Can change content type', 4, u'change_contenttype', u'Can delete content type', 4, u'delete_contenttype') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = contenttypes ORDER BY "django_content_type"."name" ASC; args=('contenttypes',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = session AND "django_content_type"."app_label" = sessions ); args=('session', 'sessions') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (session, sessions, session); args=[u'session', 'sessions', 'session'] | |
DEBUG:django.db.backends:(0.000) 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,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add session AS "name", 5 AS "content_type_id", add_session AS "codename" UNION ALL SELECT Can change session, 5, change_session UNION ALL SELECT Can delete session, 5, delete_session; args=(u'Can add session', 5, u'add_session', u'Can change session', 5, u'change_session', u'Can delete session', 5, u'delete_session') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = sessions ORDER BY "django_content_type"."name" ASC; args=('sessions',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = site AND "django_content_type"."app_label" = sites ); args=('site', 'sites') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (site, sites, site); args=[u'site', 'sites', 'site'] | |
DEBUG:django.db.backends:(0.000) 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) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(6,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add site AS "name", 6 AS "content_type_id", add_site AS "codename" UNION ALL SELECT Can change site, 6, change_site UNION ALL SELECT Can delete site, 6, delete_site; args=(u'Can add site', 6, u'add_site', u'Can change site', 6, u'change_site', u'Can delete site', 6, u'delete_site') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = sites ORDER BY "django_content_type"."name" ASC; args=('sites',) | |
DEBUG:django.db.backends:(0.000) SELECT (1) AS "a" FROM "django_site" WHERE "django_site"."id" = 1 LIMIT 1; args=(1,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_site" ("id", "domain", "name") SELECT 1 AS "id", example.com AS "domain", example.com AS "name"; args=(1, 'example.com', 'example.com') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = migrationhistory AND "django_content_type"."app_label" = south ); args=('migrationhistory', 'south') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (migration history, south, migrationhistory); args=[u'migration history', 'south', 'migrationhistory'] | |
DEBUG:django.db.backends:(0.000) 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 (7) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(7,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add migration history AS "name", 7 AS "content_type_id", add_migrationhistory AS "codename" UNION ALL SELECT Can change migration history, 7, change_migrationhistory UNION ALL SELECT Can delete migration history, 7, delete_migrationhistory; args=(u'Can add migration history', 7, u'add_migrationhistory', u'Can change migration history', 7, u'change_migrationhistory', u'Can delete migration history', 7, u'delete_migrationhistory') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = south ORDER BY "django_content_type"."name" ASC; args=('south',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = servercircuit AND "django_content_type"."app_label" = circuit ); args=('servercircuit', 'circuit') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (server circuit, circuit, servercircuit); args=[u'server circuit', 'circuit', 'servercircuit'] | |
DEBUG:django.db.backends:(0.000) 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 (8) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(8,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add server circuit AS "name", 8 AS "content_type_id", add_servercircuit AS "codename" UNION ALL SELECT Can change server circuit, 8, change_servercircuit UNION ALL SELECT Can delete server circuit, 8, delete_servercircuit; args=(u'Can add server circuit', 8, u'add_servercircuit', u'Can change server circuit', 8, u'change_servercircuit', u'Can delete server circuit', 8, u'delete_servercircuit') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = circuit ORDER BY "django_content_type"."name" ASC; args=('circuit',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = psychometricdata AND "django_content_type"."app_label" = psychometrics ); args=('psychometricdata', 'psychometrics') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (psychometric data, psychometrics, psychometricdata); args=[u'psychometric data', 'psychometrics', 'psychometricdata'] | |
DEBUG:django.db.backends:(0.000) 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 (9) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(9,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add psychometric data AS "name", 9 AS "content_type_id", add_psychometricdata AS "codename" UNION ALL SELECT Can change psychometric data, 9, change_psychometricdata UNION ALL SELECT Can delete psychometric data, 9, delete_psychometricdata; args=(u'Can add psychometric data', 9, u'add_psychometricdata', u'Can change psychometric data', 9, u'change_psychometricdata', u'Can delete psychometric data', 9, u'delete_psychometricdata') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = psychometrics ORDER BY "django_content_type"."name" ASC; args=('psychometrics',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = nonce AND "django_content_type"."app_label" = django_openid_auth ); args=('nonce', 'django_openid_auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (nonce, django_openid_auth, nonce); args=[u'nonce', 'django_openid_auth', 'nonce'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = association AND "django_content_type"."app_label" = django_openid_auth ); args=('association', 'django_openid_auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (association, django_openid_auth, association); args=[u'association', 'django_openid_auth', 'association'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = useropenid AND "django_content_type"."app_label" = django_openid_auth ); args=('useropenid', 'django_openid_auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user open id, django_openid_auth, useropenid); args=[u'user open id', 'django_openid_auth', 'useropenid'] | |
DEBUG:django.db.backends:(0.000) 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 (10, 11, 12) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(10, 11, 12) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add nonce AS "name", 10 AS "content_type_id", add_nonce AS "codename" UNION ALL SELECT Can change nonce, 10, change_nonce UNION ALL SELECT Can delete nonce, 10, delete_nonce UNION ALL SELECT Can add association, 11, add_association UNION ALL SELECT Can change association, 11, change_association UNION ALL SELECT Can delete association, 11, delete_association UNION ALL SELECT Can add user open id, 12, add_useropenid UNION ALL SELECT Can change user open id, 12, change_useropenid UNION ALL SELECT Can delete user open id, 12, delete_useropenid; args=(u'Can add nonce', 10, u'add_nonce', u'Can change nonce', 10, u'change_nonce', u'Can delete nonce', 10, u'delete_nonce', u'Can add association', 11, u'add_association', u'Can change association', 11, u'change_association', u'Can delete association', 11, u'delete_association', u'Can add user open id', 12, u'add_useropenid', u'Can change user open id', 12, u'change_useropenid', u'Can delete user open id', 12, u'delete_useropenid') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = django_openid_auth ORDER BY "django_content_type"."name" ASC; args=('django_openid_auth',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = logentry AND "django_content_type"."app_label" = admin ); args=('logentry', 'admin') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (log entry, admin, logentry); args=[u'log entry', 'admin', 'logentry'] | |
DEBUG:django.db.backends:(0.000) 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 (13) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(13,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add log entry AS "name", 13 AS "content_type_id", add_logentry AS "codename" UNION ALL SELECT Can change log entry, 13, change_logentry UNION ALL SELECT Can delete log entry, 13, delete_logentry; args=(u'Can add log entry', 13, u'add_logentry', u'Can change log entry', 13, u'change_logentry', u'Can delete log entry', 13, u'delete_logentry') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = admin ORDER BY "django_content_type"."name" ASC; args=('admin',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = corsmodel AND "django_content_type"."app_label" = corsheaders ); args=('corsmodel', 'corsheaders') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (cors model, corsheaders, corsmodel); args=[u'cors model', 'corsheaders', 'corsmodel'] | |
DEBUG:django.db.backends:(0.000) 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 (14) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(14,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add cors model AS "name", 14 AS "content_type_id", add_corsmodel AS "codename" UNION ALL SELECT Can change cors model, 14, change_corsmodel UNION ALL SELECT Can delete cors model, 14, delete_corsmodel; args=(u'Can add cors model', 14, u'add_corsmodel', u'Can change cors model', 14, u'change_corsmodel', u'Can delete cors model', 14, u'delete_corsmodel') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = corsheaders ORDER BY "django_content_type"."name" ASC; args=('corsheaders',) | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = fsexpirations AND "django_content_type"."app_label" = djpyfs ); args=('fsexpirations', 'djpyfs') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (fs expirations, djpyfs, fsexpirations); args=[u'fs expirations', 'djpyfs', 'fsexpirations'] | |
DEBUG:django.db.backends:(0.000) 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 (15) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(15,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add fs expirations AS "name", 15 AS "content_type_id", add_fsexpirations AS "codename" UNION ALL SELECT Can change fs expirations, 15, change_fsexpirations UNION ALL SELECT Can delete fs expirations, 15, delete_fsexpirations; args=(u'Can add fs expirations', 15, u'add_fsexpirations', u'Can change fs expirations', 15, u'change_fsexpirations', u'Can delete fs expirations', 15, u'delete_fsexpirations') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = djpyfs ORDER BY "django_content_type"."name" ASC; args=('djpyfs',) | |
Installing custom SQL ... | |
Installing indexes ... | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_permission_e4470c6e" ON "auth_permission" ("content_type_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_group_permissions_bda51c3c" ON "auth_group_permissions" ("group_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_group_permissions_1e014c8f" ON "auth_group_permissions" ("permission_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_user_user_permissions_fbfc09f1" ON "auth_user_user_permissions" ("user_id");; args=() | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "auth_user_user_permissions_1e014c8f" ON "auth_user_user_permissions" ("permission_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_user_groups_fbfc09f1" ON "auth_user_groups" ("user_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_user_groups_bda51c3c" ON "auth_user_groups" ("group_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_session_c25c2c28" ON "django_session" ("expire_date");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_openid_auth_useropenid_fbfc09f1" ON "django_openid_auth_useropenid" ("user_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_admin_log_fbfc09f1" ON "django_admin_log" ("user_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_admin_log_e4470c6e" ON "django_admin_log" ("content_type_id");; args=() | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djpyfs_fsexpirations_23f6fb62" ON "djpyfs_fsexpirations" ("expiration");; args=() | |
Installed 0 object(s) from 0 fixture(s) | |
Migrating... | |
DEBUG:django.db.backends:(0.001) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for djcelery: | |
- Migrating forwards to 0004_v30_changes. | |
> djcelery:0001_initial | |
DEBUG:django.db.backends:(0.003) CREATE TABLE ROLLBACK_TEST (X INT); args=() | |
DEBUG:django.db.backends:(0.000) INSERT INTO ROLLBACK_TEST (X) VALUES (8); args=() | |
DEBUG:django.db.backends:(0.000) SELECT COUNT(X) FROM ROLLBACK_TEST; args=() | |
DEBUG:django.db.backends:(0.001) DROP TABLE ROLLBACK_TEST; args=() | |
DEBUG:django.db.backends:(0.001) CREATE TABLE STDDEV_TEST (X INT); args=() | |
DEBUG:django.db.backends:(0.000) SELECT STDDEV(*) FROM STDDEV_TEST; args=() | |
DEBUG:django.db.backends:(0.001) DROP TABLE STDDEV_TEST; args=() | |
DEBUG:django.db.backends:(0.001) CREATE TABLE DDL_TRANSACTION_TEST (X INT); args=() | |
DEBUG:django.db.backends:(0.000) CREATE TABLE DDL_TRANSACTION_TEST (X INT); args=() | |
DEBUG:django.db.backends:(0.001) DROP TABLE DDL_TRANSACTION_TEST; args=() | |
DEBUG:south:execute "CREATE TABLE "celery_taskmeta" ("id" integer NOT NULL PRIMARY KEY, "task_id" varchar(255) NOT NULL UNIQUE, "status" varchar(50) NOT NULL, "result" text NULL, "date_done" datetime NOT NULL, "traceback" text NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "celery_taskmeta" ("id" integer NOT NULL PRIMARY KEY, "task_id" varchar(255) NOT NULL UNIQUE, "status" varchar(50) NOT NULL, "result" text NULL, "date_done" datetime NOT NULL, "traceback" text NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "celery_tasksetmeta" ("id" integer NOT NULL PRIMARY KEY, "taskset_id" varchar(255) NOT NULL UNIQUE, "result" text NOT NULL, "date_done" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "celery_tasksetmeta" ("id" integer NOT NULL PRIMARY KEY, "taskset_id" varchar(255) NOT NULL UNIQUE, "result" text NOT NULL, "date_done" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_intervalschedule" ("id" integer NOT NULL PRIMARY KEY, "every" integer NOT NULL, "period" varchar(24) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_intervalschedule" ("id" integer NOT NULL PRIMARY KEY, "every" integer NOT NULL, "period" varchar(24) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_crontabschedule" ("id" integer NOT NULL PRIMARY KEY, "minute" varchar(64) NOT NULL, "hour" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_crontabschedule" ("id" integer NOT NULL PRIMARY KEY, "minute" varchar(64) NOT NULL, "hour" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_periodictasks" ("ident" smallint NOT NULL PRIMARY KEY, "last_update" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_periodictasks" ("ident" smallint NOT NULL PRIMARY KEY, "last_update" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_periodictask" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL UNIQUE, "task" varchar(200) NOT NULL, "interval_id" integer NULL, "crontab_id" integer NULL, "args" text NOT NULL, "kwargs" text NOT NULL, "queue" varchar(200) NULL, "exchange" varchar(200) NULL, "routing_key" varchar(200) NULL, "expires" datetime NULL, "enabled" bool NOT NULL, "last_run_at" datetime NULL, "total_run_count" integer unsigned NOT NULL, "date_changed" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_periodictask" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL UNIQUE, "task" varchar(200) NOT NULL, "interval_id" integer NULL, "crontab_id" integer NULL, "args" text NOT NULL, "kwargs" text NOT NULL, "queue" varchar(200) NULL, "exchange" varchar(200) NULL, "routing_key" varchar(200) NULL, "expires" datetime NULL, "enabled" bool NOT NULL, "last_run_at" datetime NULL, "total_run_count" integer unsigned NOT NULL, "date_changed" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_workerstate" ("id" integer NOT NULL PRIMARY KEY, "hostname" varchar(255) NOT NULL UNIQUE, "last_heartbeat" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_workerstate" ("id" integer NOT NULL PRIMARY KEY, "hostname" varchar(255) NOT NULL UNIQUE, "last_heartbeat" datetime NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "djcelery_taskstate" ("id" integer NOT NULL PRIMARY KEY, "state" varchar(64) NOT NULL, "task_id" varchar(36) NOT NULL UNIQUE, "name" varchar(200) NULL, "tstamp" datetime NOT NULL, "args" text NULL, "kwargs" text NULL, "eta" datetime NULL, "expires" datetime NULL, "result" text NULL, "traceback" text NULL, "runtime" real NULL, "retries" integer NOT NULL, "worker_id" integer NULL, "hidden" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "djcelery_taskstate" ("id" integer NOT NULL PRIMARY KEY, "state" varchar(64) NOT NULL, "task_id" varchar(36) NOT NULL UNIQUE, "name" varchar(200) NULL, "tstamp" datetime NOT NULL, "args" text NULL, "kwargs" text NULL, "eta" datetime NULL, "expires" datetime NULL, "result" text NULL, "traceback" text NULL, "runtime" real NULL, "retries" integer NOT NULL, "worker_id" integer NULL, "hidden" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_periodictask_17d2d99d" ON "djcelery_periodictask" ("interval_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_periodictask_17d2d99d" ON "djcelery_periodictask" ("interval_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_periodictask_7aa5fda" ON "djcelery_periodictask" ("crontab_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_periodictask_7aa5fda" ON "djcelery_periodictask" ("crontab_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_workerstate_eb8ac7e4" ON "djcelery_workerstate" ("last_heartbeat");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_workerstate_eb8ac7e4" ON "djcelery_workerstate" ("last_heartbeat");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_taskstate_355bfc27" ON "djcelery_taskstate" ("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_taskstate_355bfc27" ON "djcelery_taskstate" ("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_taskstate_52094d6e" ON "djcelery_taskstate" ("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_taskstate_52094d6e" ON "djcelery_taskstate" ("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_taskstate_f0ba6500" ON "djcelery_taskstate" ("tstamp");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_taskstate_f0ba6500" ON "djcelery_taskstate" ("tstamp");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_taskstate_20fc5b84" ON "djcelery_taskstate" ("worker_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_taskstate_20fc5b84" ON "djcelery_taskstate" ("worker_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_taskstate_c91f1bf" ON "djcelery_taskstate" ("hidden");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_taskstate_c91f1bf" ON "djcelery_taskstate" ("hidden");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = djcelery AND "south_migrationhistory"."migration" = 0001_initial ); args=('djcelery', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (djcelery, 0001_initial, 2015-05-14 20:30:57.911523); args=['djcelery', '0001_initial', u'2015-05-14 20:30:57.911523'] | |
> djcelery:0002_v25_changes | |
DEBUG:django.db.backends:(0.000) | |
SELECT name FROM sqlite_master | |
WHERE type='table' AND NOT name='sqlite_sequence' | |
ORDER BY name; args=() | |
DEBUG:django.db.backends:(0.000) | |
SELECT name FROM sqlite_master | |
WHERE type='table' AND NOT name='sqlite_sequence' | |
ORDER BY name; args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_periodictask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_periodictask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_djcelery_periodictask_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_periodictask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("djcelery_periodictask_7aa5fda"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("djcelery_periodictask_17d2d99d"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_djcelery_periodictask_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_periodictask"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_djcelery_periodictask" ("crontab_id" integer, "task" varchar(200) NOT NULL, "name" varchar(200) NOT NULL UNIQUE, "exchange" varchar(200), "args" text NOT NULL, "enabled" bool NOT NULL, "routing_key" varchar(200), "interval_id" integer, "last_run_at" datetime, "queue" varchar(200), "total_run_count" integer unsigned NOT NULL, "expires" datetime, "kwargs" text NOT NULL, "date_changed" datetime NOT NULL, "id" integer PRIMARY KEY, "description" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_djcelery_periodictask" ("crontab_id" integer, "task" varchar(200) NOT NULL, "name" varchar(200) NOT NULL UNIQUE, "exchange" varchar(200), "args" text NOT NULL, "enabled" bool NOT NULL, "routing_key" varchar(200), "interval_id" integer, "last_run_at" datetime, "queue" varchar(200), "total_run_count" integer unsigned NOT NULL, "expires" datetime, "kwargs" text NOT NULL, "date_changed" datetime NOT NULL, "id" integer PRIMARY KEY, "description" text NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_periodictask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_djcelery_periodictask"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_djcelery_periodictask" ("id", "name", "task", "interval_id", "crontab_id", "args", "kwargs", "queue", "exchange", "routing_key", "expires", "enabled", "last_run_at", "total_run_count", "date_changed", "description") SELECT "id", "name", "task", "interval_id", "crontab_id", "args", "kwargs", "queue", "exchange", "routing_key", "expires", "enabled", "last_run_at", "total_run_count", "date_changed", '' as "description" FROM "djcelery_periodictask";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_djcelery_periodictask" ("id", "name", "task", "interval_id", "crontab_id", "args", "kwargs", "queue", "exchange", "routing_key", "expires", "enabled", "last_run_at", "total_run_count", "date_changed", "description") SELECT "id", "name", "task", "interval_id", "crontab_id", "args", "kwargs", "queue", "exchange", "routing_key", "expires", "enabled", "last_run_at", "total_run_count", "date_changed", '' as "description" FROM "djcelery_periodictask";; args=[] | |
DEBUG:south:execute "DROP TABLE "djcelery_periodictask";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "djcelery_periodictask";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_djcelery_periodictask" RENAME TO "djcelery_periodictask";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_djcelery_periodictask" RENAME TO "djcelery_periodictask";; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_periodictask_7aa5fda" ON "djcelery_periodictask"("crontab_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_periodictask_7aa5fda" ON "djcelery_periodictask"("crontab_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "djcelery_periodictask_17d2d99d" ON "djcelery_periodictask"("interval_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "djcelery_periodictask_17d2d99d" ON "djcelery_periodictask"("interval_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_taskmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_taskmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_celery_taskmeta" ("status" varchar(50) NOT NULL, "task_id" varchar(255) NOT NULL UNIQUE, "date_done" datetime NOT NULL, "traceback" text, "result" text, "hidden" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_celery_taskmeta" ("status" varchar(50) NOT NULL, "task_id" varchar(255) NOT NULL UNIQUE, "date_done" datetime NOT NULL, "traceback" text, "result" text, "hidden" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_celery_taskmeta"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_celery_taskmeta" ("id", "task_id", "status", "result", "date_done", "traceback", "hidden") SELECT "id", "task_id", "status", "result", "date_done", "traceback", 'False' as "hidden" FROM "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_celery_taskmeta" ("id", "task_id", "status", "result", "date_done", "traceback", "hidden") SELECT "id", "task_id", "status", "result", "date_done", "traceback", 'False' as "hidden" FROM "celery_taskmeta";; args=[] | |
DEBUG:south:execute "DROP TABLE "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "celery_taskmeta";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_celery_taskmeta" RENAME TO "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_celery_taskmeta" RENAME TO "celery_taskmeta";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_tasksetmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_tasksetmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_tasksetmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_tasksetmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_tasksetmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_tasksetmeta"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_celery_tasksetmeta" ("taskset_id" varchar(255) NOT NULL UNIQUE, "hidden" bool NOT NULL, "id" integer PRIMARY KEY, "date_done" datetime NOT NULL, "result" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_celery_tasksetmeta" ("taskset_id" varchar(255) NOT NULL UNIQUE, "hidden" bool NOT NULL, "id" integer PRIMARY KEY, "date_done" datetime NOT NULL, "result" text NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_tasksetmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_celery_tasksetmeta"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_celery_tasksetmeta" ("id", "taskset_id", "result", "date_done", "hidden") SELECT "id", "taskset_id", "result", "date_done", 'False' as "hidden" FROM "celery_tasksetmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_celery_tasksetmeta" ("id", "taskset_id", "result", "date_done", "hidden") SELECT "id", "taskset_id", "result", "date_done", 'False' as "hidden" FROM "celery_tasksetmeta";; args=[] | |
DEBUG:south:execute "DROP TABLE "celery_tasksetmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "celery_tasksetmeta";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_celery_tasksetmeta" RENAME TO "celery_tasksetmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_celery_tasksetmeta" RENAME TO "celery_tasksetmeta";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = djcelery AND "south_migrationhistory"."migration" = 0002_v25_changes ); args=('djcelery', '0002_v25_changes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (djcelery, 0002_v25_changes, 2015-05-14 20:30:57.951626); args=['djcelery', '0002_v25_changes', u'2015-05-14 20:30:57.951626'] | |
> djcelery:0003_v26_changes | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_djcelery_crontabschedule" ("day_of_month" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "minute" varchar(64) NOT NULL, "hour" varchar(64) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_djcelery_crontabschedule" ("day_of_month" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "minute" varchar(64) NOT NULL, "hour" varchar(64) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_djcelery_crontabschedule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_djcelery_crontabschedule" ("id", "minute", "hour", "day_of_week", "day_of_month") SELECT "id", "minute", "hour", "day_of_week", '*' as "day_of_month" FROM "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_djcelery_crontabschedule" ("id", "minute", "hour", "day_of_week", "day_of_month") SELECT "id", "minute", "hour", "day_of_week", '*' as "day_of_month" FROM "djcelery_crontabschedule";; args=[] | |
DEBUG:south:execute "DROP TABLE "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "djcelery_crontabschedule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_djcelery_crontabschedule" RENAME TO "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_djcelery_crontabschedule" RENAME TO "djcelery_crontabschedule";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_djcelery_crontabschedule" ("hour" varchar(64) NOT NULL, "day_of_month" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL, "month_of_year" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "minute" varchar(64) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_djcelery_crontabschedule" ("hour" varchar(64) NOT NULL, "day_of_month" varchar(64) NOT NULL, "day_of_week" varchar(64) NOT NULL, "month_of_year" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "minute" varchar(64) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("djcelery_crontabschedule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_djcelery_crontabschedule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_djcelery_crontabschedule" ("day_of_month", "day_of_week", "id", "minute", "hour", "month_of_year") SELECT "day_of_month", "day_of_week", "id", "minute", "hour", '*' as "month_of_year" FROM "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_djcelery_crontabschedule" ("day_of_month", "day_of_week", "id", "minute", "hour", "month_of_year") SELECT "day_of_month", "day_of_week", "id", "minute", "hour", '*' as "month_of_year" FROM "djcelery_crontabschedule";; args=[] | |
DEBUG:south:execute "DROP TABLE "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "djcelery_crontabschedule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_djcelery_crontabschedule" RENAME TO "djcelery_crontabschedule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_djcelery_crontabschedule" RENAME TO "djcelery_crontabschedule";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = djcelery AND "south_migrationhistory"."migration" = 0003_v26_changes ); args=('djcelery', '0003_v26_changes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (djcelery, 0003_v26_changes, 2015-05-14 20:30:57.980725); args=['djcelery', '0003_v26_changes', u'2015-05-14 20:30:57.980725'] | |
> djcelery:0004_v30_changes | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_taskmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_celery_taskmeta_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_celery_taskmeta" ("status" varchar(50) NOT NULL, "task_id" varchar(255) NOT NULL UNIQUE, "date_done" datetime NOT NULL, "traceback" text, "meta" text NULL, "result" text, "hidden" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_celery_taskmeta" ("status" varchar(50) NOT NULL, "task_id" varchar(255) NOT NULL UNIQUE, "date_done" datetime NOT NULL, "traceback" text, "meta" text NULL, "result" text, "hidden" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("celery_taskmeta"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_celery_taskmeta"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_celery_taskmeta" ("status", "task_id", "date_done", "traceback", "result", "hidden", "id") SELECT "status", "task_id", "date_done", "traceback", "result", "hidden", "id" FROM "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_celery_taskmeta" ("status", "task_id", "date_done", "traceback", "result", "hidden", "id") SELECT "status", "task_id", "date_done", "traceback", "result", "hidden", "id" FROM "celery_taskmeta";; args=[] | |
DEBUG:south:execute "DROP TABLE "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "celery_taskmeta";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_celery_taskmeta" RENAME TO "celery_taskmeta";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_celery_taskmeta" RENAME TO "celery_taskmeta";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = djcelery AND "south_migrationhistory"."migration" = 0004_v30_changes ); args=('djcelery', '0004_v30_changes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (djcelery, 0004_v30_changes, 2015-05-14 20:30:58.004863); args=['djcelery', '0004_v30_changes', u'2015-05-14 20:30:58.004863'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = taskmeta AND "django_content_type"."app_label" = djcelery ); args=('taskmeta', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (task state, djcelery, taskmeta); args=[u'task state', 'djcelery', 'taskmeta'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = tasksetmeta AND "django_content_type"."app_label" = djcelery ); args=('tasksetmeta', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (saved group result, djcelery, tasksetmeta); args=[u'saved group result', 'djcelery', 'tasksetmeta'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = intervalschedule AND "django_content_type"."app_label" = djcelery ); args=('intervalschedule', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (interval, djcelery, intervalschedule); args=[u'interval', 'djcelery', 'intervalschedule'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = crontabschedule AND "django_content_type"."app_label" = djcelery ); args=('crontabschedule', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (crontab, djcelery, crontabschedule); args=[u'crontab', 'djcelery', 'crontabschedule'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = periodictasks AND "django_content_type"."app_label" = djcelery ); args=('periodictasks', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (periodic tasks, djcelery, periodictasks); args=[u'periodic tasks', 'djcelery', 'periodictasks'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = periodictask AND "django_content_type"."app_label" = djcelery ); args=('periodictask', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (periodic task, djcelery, periodictask); args=[u'periodic task', 'djcelery', 'periodictask'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = workerstate AND "django_content_type"."app_label" = djcelery ); args=('workerstate', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (worker, djcelery, workerstate); args=[u'worker', 'djcelery', 'workerstate'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = taskstate AND "django_content_type"."app_label" = djcelery ); args=('taskstate', 'djcelery') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (task, djcelery, taskstate); args=[u'task', 'djcelery', 'taskstate'] | |
DEBUG:django.db.backends:(0.000) 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 (16, 17, 18, 19, 20, 21, 22, 23) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(16, 17, 18, 19, 20, 21, 22, 23) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add task state AS "name", 16 AS "content_type_id", add_taskmeta AS "codename" UNION ALL SELECT Can change task state, 16, change_taskmeta UNION ALL SELECT Can delete task state, 16, delete_taskmeta UNION ALL SELECT Can add saved group result, 17, add_tasksetmeta UNION ALL SELECT Can change saved group result, 17, change_tasksetmeta UNION ALL SELECT Can delete saved group result, 17, delete_tasksetmeta UNION ALL SELECT Can add interval, 18, add_intervalschedule UNION ALL SELECT Can change interval, 18, change_intervalschedule UNION ALL SELECT Can delete interval, 18, delete_intervalschedule UNION ALL SELECT Can add crontab, 19, add_crontabschedule UNION ALL SELECT Can change crontab, 19, change_crontabschedule UNION ALL SELECT Can delete crontab, 19, delete_crontabschedule UNION ALL SELECT Can add periodic tasks, 20, add_periodictasks UNION ALL SELECT Can change periodic tasks, 20, change_periodictasks UNION ALL SELECT Can delete periodic tasks, 20, delete_periodictasks UNION ALL SELECT Can add periodic task, 21, add_periodictask UNION ALL SELECT Can change periodic task, 21, change_periodictask UNION ALL SELECT Can delete periodic task, 21, delete_periodictask UNION ALL SELECT Can add worker, 22, add_workerstate UNION ALL SELECT Can change worker, 22, change_workerstate UNION ALL SELECT Can delete worker, 22, delete_workerstate UNION ALL SELECT Can add task, 23, add_taskstate UNION ALL SELECT Can change task, 23, change_taskstate UNION ALL SELECT Can delete task, 23, delete_taskstate; args=(u'Can add task state', 16, u'add_taskmeta', u'Can change task state', 16, u'change_taskmeta', u'Can delete task state', 16, u'delete_taskmeta', u'Can add saved group result', 17, u'add_tasksetmeta', u'Can change saved group result', 17, u'change_tasksetmeta', u'Can delete saved group result', 17, u'delete_tasksetmeta', u'Can add interval', 18, u'add_intervalschedule', u'Can change interval', 18, u'change_intervalschedule', u'Can delete interval', 18, u'delete_intervalschedule', u'Can add crontab', 19, u'add_crontabschedule', u'Can change crontab', 19, u'change_crontabschedule', u'Can delete crontab', 19, u'delete_crontabschedule', u'Can add periodic tasks', 20, u'add_periodictasks', u'Can change periodic tasks', 20, u'change_periodictasks', u'Can delete periodic tasks', 20, u'delete_periodictasks', u'Can add periodic task', 21, u'add_periodictask', u'Can change periodic task', 21, u'change_periodictask', u'Can delete periodic task', 21, u'delete_periodictask', u'Can add worker', 22, u'add_workerstate', u'Can change worker', 22, u'change_workerstate', u'Can delete worker', 22, u'delete_workerstate', u'Can add task', 23, u'add_taskstate', u'Can change task', 23, u'change_taskstate', u'Can delete task', 23, u'delete_taskstate') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = djcelery ORDER BY "django_content_type"."name" ASC; args=('djcelery',) | |
- Loading initial data for djcelery. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.001) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for courseware: | |
- Migrating forwards to 0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov. | |
> courseware:0001_initial | |
DEBUG:south:execute "CREATE TABLE "courseware_studentmodule" ("id" integer NOT NULL PRIMARY KEY, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "student_id" integer NOT NULL, "state" text NULL, "grade" real NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "courseware_studentmodule" ("id" integer NOT NULL PRIMARY KEY, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "student_id" integer NOT NULL, "state" text NULL, "grade" real NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentmodule_student_id__module_id__module_type" ON "courseware_studentmodule"("student_id", "module_id", "module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentmodule_student_id__module_id__module_type" ON "courseware_studentmodule"("student_id", "module_id", "module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule" ("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule" ("student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0001_initial ); args=('courseware', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0001_initial, 2015-05-14 20:30:58.259611); args=['courseware', '0001_initial', u'2015-05-14 20:30:58.259611'] | |
> courseware:0002_add_indexes | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule" ("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule" ("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule" ("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule" ("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule" ("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule" ("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule" ("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule" ("module_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0002_add_indexes ); args=('courseware', '0002_add_indexes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0002_add_indexes, 2015-05-14 20:30:58.282571); args=['courseware', '0002_add_indexes', u'2015-05-14 20:30:58.282571'] | |
> courseware:0003_done_grade_cache | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_student_id__module_id__module_type"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_student_id__module_id__module_type"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("id", "module_type", "module_id", "student_id", "state", "grade", "created", "modified") SELECT "id", "module_type", "module_id", "student_id", "state", "grade", "created", "modified" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("id", "module_type", "module_id", "student_id", "state", "grade", "created", "modified") SELECT "id", "module_type", "module_id", "student_id", "state", "grade", "created", "modified" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real NULL, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real NULL, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "module_type", "module_id", "id") SELECT "created", "grade", "student_id", "modified", "state", "module_type", "module_id", "id" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "module_type", "module_id", "id") SELECT "created", "grade", "student_id", "modified", "state", "module_type", "module_id", "id" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "done" varchar(8) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "done" varchar(8) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "id", "done") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "id", 'na' as "done" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "id", "done") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "id", 'na' as "done" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentmodule_module_id__student_id" ON "courseware_studentmodule"("module_id", "student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentmodule_module_id__student_id" ON "courseware_studentmodule"("module_id", "student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0003_done_grade_cache ); args=('courseware', '0003_done_grade_cache') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0003_done_grade_cache, 2015-05-14 20:30:58.345321); args=['courseware', '0003_done_grade_cache', u'2015-05-14 20:30:58.345321'] | |
> courseware:0004_add_field_studentmodule_course_id | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_module_id__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_module_id__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "done" varchar(8) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "done" varchar(8) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "module_id", "id", "course_id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "module_id", "id", '' as "course_id" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "module_id", "id", "course_id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "module_id", "id", '' as "course_id" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentmodule_module_id__student_id" ON "courseware_studentmodule"("module_id", "student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentmodule_module_id__student_id" ON "courseware_studentmodule"("module_id", "student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_module_id__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_module_id__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "done" varchar(8) NOT NULL, "course_id" varchar(255) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "done" varchar(8) NOT NULL, "course_id" varchar(255) NOT NULL, "module_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "course_id", "done", "id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "course_id", "done", "id" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "course_id", "done", "id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "module_id", "course_id", "done", "id" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_6dff86b5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodule_f53ed95e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "done" varchar(8) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodule" ("created" datetime NOT NULL, "grade" real, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "state" text, "max_grade" real, "module_type" varchar(32) NOT NULL, "module_id" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "done" varchar(8) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodule"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodule"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "course_id", "module_id", "id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "course_id", "module_id", "id" FROM "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodule" ("created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "course_id", "module_id", "id") SELECT "created", "grade", "student_id", "modified", "state", "max_grade", "module_type", "done", "course_id", "module_id", "id" FROM "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodule" RENAME TO "courseware_studentmodule";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_42ff452e" ON "courseware_studentmodule"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_3216ff68" ON "courseware_studentmodule"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_6dff86b5" ON "courseware_studentmodule"("grade");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_5436e97a" ON "courseware_studentmodule"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_2d8768ff" ON "courseware_studentmodule"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodule_f53ed95e" ON "courseware_studentmodule"("module_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentmodule_student_id__module_id__course_id" ON "courseware_studentmodule"("student_id", "module_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentmodule_student_id__module_id__course_id" ON "courseware_studentmodule"("student_id", "module_id", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0004_add_field_studentmodule_course_id ); args=('courseware', '0004_add_field_studentmodule_course_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0004_add_field_studentmodule_course_id, 2015-05-14 20:30:58.412474); args=['courseware', '0004_add_field_studentmodule_course_id', u'2015-05-14 20:30:58.412474'] | |
> courseware:0005_auto__add_offlinecomputedgrade__add_unique_offlinecomputedgrade_user_c | |
DEBUG:south:execute "CREATE TABLE "courseware_offlinecomputedgrade" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL, "gradeset" text NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "courseware_offlinecomputedgrade" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL, "gradeset" text NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_offlinecomputedgrade_user_id__course_id" ON "courseware_offlinecomputedgrade"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_offlinecomputedgrade_user_id__course_id" ON "courseware_offlinecomputedgrade"("user_id", "course_id");; args=[] | |
DEBUG:south:execute "CREATE TABLE "courseware_offlinecomputedgradelog" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "seconds" integer NOT NULL, "nstudents" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_offlinecomputedgradelog" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "seconds" integer NOT NULL, "nstudents" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgrade_fbfc09f1" ON "courseware_offlinecomputedgrade" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgrade_fbfc09f1" ON "courseware_offlinecomputedgrade" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgrade_ff48d8e5" ON "courseware_offlinecomputedgrade" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgrade_ff48d8e5" ON "courseware_offlinecomputedgrade" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgrade_3216ff68" ON "courseware_offlinecomputedgrade" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgrade_3216ff68" ON "courseware_offlinecomputedgrade" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgrade_8aac229" ON "courseware_offlinecomputedgrade" ("updated");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgrade_8aac229" ON "courseware_offlinecomputedgrade" ("updated");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgradelog_ff48d8e5" ON "courseware_offlinecomputedgradelog" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgradelog_ff48d8e5" ON "courseware_offlinecomputedgradelog" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_offlinecomputedgradelog_3216ff68" ON "courseware_offlinecomputedgradelog" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_offlinecomputedgradelog_3216ff68" ON "courseware_offlinecomputedgradelog" ("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0005_auto__add_offlinecomputedgrade__add_unique_offlinecomputedgrade_user_c ); args=('courseware', '0005_auto__add_offlinecomputedgrade__add_unique_offlinecomputedgrade_user_c') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0005_auto__add_offlinecomputedgrade__add_unique_offlinecomputedgrade_user_c, 2015-05-14 20:30:58.445183); args=['courseware', '0005_auto__add_offlinecomputedgrade__add_unique_offlinecomputedgrade_user_c', u'2015-05-14 20:30:58.445183'] | |
> courseware:0006_create_student_module_history | |
DEBUG:south:execute "CREATE TABLE "courseware_studentmodulehistory" ("id" integer NOT NULL PRIMARY KEY, "student_module_id" integer NOT NULL, "version" varchar(255) NOT NULL, "created" datetime NOT NULL, "state" text NULL, "grade" real NULL, "max_grade" real NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_studentmodulehistory" ("id" integer NOT NULL PRIMARY KEY, "student_module_id" integer NOT NULL, "version" varchar(255) NOT NULL, "created" datetime NOT NULL, "state" text NULL, "grade" real NULL, "max_grade" real NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_5656f5fe" ON "courseware_studentmodulehistory" ("student_module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_5656f5fe" ON "courseware_studentmodulehistory" ("student_module_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_659105e4" ON "courseware_studentmodulehistory" ("version");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_659105e4" ON "courseware_studentmodulehistory" ("version");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_3216ff68" ON "courseware_studentmodulehistory" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_3216ff68" ON "courseware_studentmodulehistory" ("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0006_create_student_module_history ); args=('courseware', '0006_create_student_module_history') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0006_create_student_module_history, 2015-05-14 20:30:58.470192); args=['courseware', '0006_create_student_module_history', u'2015-05-14 20:30:58.470192'] | |
> courseware:0007_allow_null_version_in_history | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodulehistory"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodulehistory"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentmodulehistory"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodulehistory_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodulehistory_659105e4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentmodulehistory_5656f5fe"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodulehistory"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentmodulehistory" ("created" datetime NOT NULL, "grade" real, "max_grade" real, "state" text, "version" varchar(255) NULL, "student_module_id" integer NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentmodulehistory" ("created" datetime NOT NULL, "grade" real, "max_grade" real, "state" text, "version" varchar(255) NULL, "student_module_id" integer NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentmodulehistory"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentmodulehistory"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentmodulehistory" ("id", "student_module_id", "version", "created", "state", "grade", "max_grade") SELECT "id", "student_module_id", "version", "created", "state", "grade", "max_grade" FROM "courseware_studentmodulehistory";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentmodulehistory" ("id", "student_module_id", "version", "created", "state", "grade", "max_grade") SELECT "id", "student_module_id", "version", "created", "state", "grade", "max_grade" FROM "courseware_studentmodulehistory";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentmodulehistory";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentmodulehistory";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentmodulehistory" RENAME TO "courseware_studentmodulehistory";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentmodulehistory" RENAME TO "courseware_studentmodulehistory";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_3216ff68" ON "courseware_studentmodulehistory"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_3216ff68" ON "courseware_studentmodulehistory"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_659105e4" ON "courseware_studentmodulehistory"("version");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_659105e4" ON "courseware_studentmodulehistory"("version");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentmodulehistory_5656f5fe" ON "courseware_studentmodulehistory"("student_module_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentmodulehistory_5656f5fe" ON "courseware_studentmodulehistory"("student_module_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0007_allow_null_version_in_history ); args=('courseware', '0007_allow_null_version_in_history') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0007_allow_null_version_in_history, 2015-05-14 20:30:58.498580); args=['courseware', '0007_allow_null_version_in_history', u'2015-05-14 20:30:58.498580'] | |
> courseware:0008_add_xmodule_storage | |
DEBUG:south:execute "CREATE TABLE "courseware_xmodulestudentinfofield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "value" text NULL, "student_id" integer NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_xmodulestudentinfofield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "value" text NULL, "student_id" integer NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulestudentinfofield_student_id__field_name" ON "courseware_xmodulestudentinfofield"("student_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulestudentinfofield_student_id__field_name" ON "courseware_xmodulestudentinfofield"("student_id", "field_name");; args=[] | |
DEBUG:south:execute "CREATE TABLE "courseware_xmodulecontentfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "definition_id" varchar(255) NOT NULL, "value" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_xmodulecontentfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "definition_id" varchar(255) NOT NULL, "value" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmodulecontentfield"("definition_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmodulecontentfield"("definition_id", "field_name");; args=[] | |
DEBUG:south:execute "CREATE TABLE "courseware_xmodulesettingsfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "usage_id" varchar(255) NOT NULL, "value" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_xmodulesettingsfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "usage_id" varchar(255) NOT NULL, "value" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulesettingsfield_usage_id__field_name" ON "courseware_xmodulesettingsfield"("usage_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulesettingsfield_usage_id__field_name" ON "courseware_xmodulesettingsfield"("usage_id", "field_name");; args=[] | |
DEBUG:south:execute "CREATE TABLE "courseware_xmodulestudentprefsfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "module_type" varchar(64) NOT NULL, "value" text NULL, "student_id" integer NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_xmodulestudentprefsfield" ("id" integer NOT NULL PRIMARY KEY, "field_name" varchar(64) NOT NULL, "module_type" varchar(64) NOT NULL, "value" text NULL, "student_id" integer NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulestudentprefsfield_student_id__module_type__field_name" ON "courseware_xmodulestudentprefsfield"("student_id", "module_type", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulestudentprefsfield_student_id__module_type__field_name" ON "courseware_xmodulestudentprefsfield"("student_id", "module_type", "field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_7e1499" ON "courseware_xmodulestudentinfofield" ("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_7e1499" ON "courseware_xmodulestudentinfofield" ("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_42ff452e" ON "courseware_xmodulestudentinfofield" ("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_42ff452e" ON "courseware_xmodulestudentinfofield" ("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_3216ff68" ON "courseware_xmodulestudentinfofield" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_3216ff68" ON "courseware_xmodulestudentinfofield" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_5436e97a" ON "courseware_xmodulestudentinfofield" ("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_5436e97a" ON "courseware_xmodulestudentinfofield" ("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmodulecontentfield" ("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmodulecontentfield" ("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmodulecontentfield" ("definition_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmodulecontentfield" ("definition_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmodulecontentfield" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmodulecontentfield" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmodulecontentfield" ("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmodulecontentfield" ("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield" ("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield" ("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield" ("usage_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield" ("usage_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield" ("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield" ("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_7e1499" ON "courseware_xmodulestudentprefsfield" ("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_7e1499" ON "courseware_xmodulestudentprefsfield" ("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_2d8768ff" ON "courseware_xmodulestudentprefsfield" ("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_2d8768ff" ON "courseware_xmodulestudentprefsfield" ("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_42ff452e" ON "courseware_xmodulestudentprefsfield" ("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_42ff452e" ON "courseware_xmodulestudentprefsfield" ("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_3216ff68" ON "courseware_xmodulestudentprefsfield" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_3216ff68" ON "courseware_xmodulestudentprefsfield" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_5436e97a" ON "courseware_xmodulestudentprefsfield" ("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_5436e97a" ON "courseware_xmodulestudentprefsfield" ("modified");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0008_add_xmodule_storage ); args=('courseware', '0008_add_xmodule_storage') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0008_add_xmodule_storage, 2015-05-14 20:30:58.563559); args=['courseware', '0008_add_xmodule_storage', u'2015-05-14 20:30:58.563559'] | |
> courseware:0009_add_field_default | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulecontentfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulecontentfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_definition_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulecontentfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_1d304ded"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_definition_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulecontentfield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmodulecontentfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "definition_id" varchar(255) NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmodulecontentfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "definition_id" varchar(255) NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulecontentfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmodulecontentfield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmodulecontentfield" ("id", "field_name", "definition_id", "value", "created", "modified") SELECT "id", "field_name", "definition_id", "value", "created", "modified" FROM "courseware_xmodulecontentfield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmodulecontentfield" ("id", "field_name", "definition_id", "value", "created", "modified") SELECT "id", "field_name", "definition_id", "value", "created", "modified" FROM "courseware_xmodulecontentfield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulecontentfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulecontentfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmodulecontentfield" RENAME TO "courseware_xmodulecontentfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmodulecontentfield" RENAME TO "courseware_xmodulecontentfield";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmodulecontentfield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmodulecontentfield"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmodulecontentfield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmodulecontentfield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmodulecontentfield"("definition_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmodulecontentfield"("definition_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmodulecontentfield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmodulecontentfield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmodulecontentfield"("definition_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmodulecontentfield"("definition_id", "field_name");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentinfofield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulestudentinfofield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_student_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulestudentinfofield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentinfofield_student_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentinfofield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmodulestudentinfofield" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmodulestudentinfofield" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentinfofield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmodulestudentinfofield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmodulestudentinfofield" ("id", "field_name", "value", "student_id", "created", "modified") SELECT "id", "field_name", "value", "student_id", "created", "modified" FROM "courseware_xmodulestudentinfofield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmodulestudentinfofield" ("id", "field_name", "value", "student_id", "created", "modified") SELECT "id", "field_name", "value", "student_id", "created", "modified" FROM "courseware_xmodulestudentinfofield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulestudentinfofield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulestudentinfofield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmodulestudentinfofield" RENAME TO "courseware_xmodulestudentinfofield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmodulestudentinfofield" RENAME TO "courseware_xmodulestudentinfofield";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_5436e97a" ON "courseware_xmodulestudentinfofield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_5436e97a" ON "courseware_xmodulestudentinfofield"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_3216ff68" ON "courseware_xmodulestudentinfofield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_3216ff68" ON "courseware_xmodulestudentinfofield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_42ff452e" ON "courseware_xmodulestudentinfofield"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_42ff452e" ON "courseware_xmodulestudentinfofield"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentinfofield_7e1499" ON "courseware_xmodulestudentinfofield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentinfofield_7e1499" ON "courseware_xmodulestudentinfofield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulestudentinfofield_student_id__field_name" ON "courseware_xmodulestudentinfofield"("student_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulestudentinfofield_student_id__field_name" ON "courseware_xmodulestudentinfofield"("student_id", "field_name");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_usage_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_d9ffa990"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_usage_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmodulesettingsfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmodulesettingsfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmodulesettingsfield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmodulesettingsfield" ("id", "field_name", "usage_id", "value", "created", "modified") SELECT "id", "field_name", "usage_id", "value", "created", "modified" FROM "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmodulesettingsfield" ("id", "field_name", "usage_id", "value", "created", "modified") SELECT "id", "field_name", "usage_id", "value", "created", "modified" FROM "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmodulesettingsfield" RENAME TO "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmodulesettingsfield" RENAME TO "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield"("usage_id");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield"("usage_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulesettingsfield_usage_id__field_name" ON "courseware_xmodulesettingsfield"("usage_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulesettingsfield_usage_id__field_name" ON "courseware_xmodulesettingsfield"("usage_id", "field_name");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_student_id__module_type__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_2d8768ff"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulestudentprefsfield_student_id__module_type__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmodulestudentprefsfield" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "module_type" varchar(64) NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmodulestudentprefsfield" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "module_type" varchar(64) NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmodulestudentprefsfield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmodulestudentprefsfield" ("id", "field_name", "module_type", "value", "student_id", "created", "modified") SELECT "id", "field_name", "module_type", "value", "student_id", "created", "modified" FROM "courseware_xmodulestudentprefsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmodulestudentprefsfield" ("id", "field_name", "module_type", "value", "student_id", "created", "modified") SELECT "id", "field_name", "module_type", "value", "student_id", "created", "modified" FROM "courseware_xmodulestudentprefsfield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulestudentprefsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulestudentprefsfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmodulestudentprefsfield" RENAME TO "courseware_xmodulestudentprefsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmodulestudentprefsfield" RENAME TO "courseware_xmodulestudentprefsfield";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_5436e97a" ON "courseware_xmodulestudentprefsfield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_5436e97a" ON "courseware_xmodulestudentprefsfield"("modified");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_3216ff68" ON "courseware_xmodulestudentprefsfield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_3216ff68" ON "courseware_xmodulestudentprefsfield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_42ff452e" ON "courseware_xmodulestudentprefsfield"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_42ff452e" ON "courseware_xmodulestudentprefsfield"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_2d8768ff" ON "courseware_xmodulestudentprefsfield"("module_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_2d8768ff" ON "courseware_xmodulestudentprefsfield"("module_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulestudentprefsfield_7e1499" ON "courseware_xmodulestudentprefsfield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulestudentprefsfield_7e1499" ON "courseware_xmodulestudentprefsfield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulestudentprefsfield_student_id__module_type__field_name" ON "courseware_xmodulestudentprefsfield"("student_id", "module_type", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulestudentprefsfield_student_id__module_type__field_name" ON "courseware_xmodulestudentprefsfield"("student_id", "module_type", "field_name");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0009_add_field_default ); args=('courseware', '0009_add_field_default') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0009_add_field_default, 2015-05-14 20:30:58.649508); args=['courseware', '0009_add_field_default', u'2015-05-14 20:30:58.649508'] | |
> courseware:0010_rename_xblock_field_content_to_user_state_summary | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_usage_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_usage_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_d9ffa990"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulesettingsfield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmodulesettingsfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmodulesettingsfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmodulesettingsfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmodulesettingsfield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmodulesettingsfield" ("created", "modified", "value", "field_name", "id", "usage_id") SELECT "created", "modified", "value", "field_name", "id", "usage_id" FROM "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmodulesettingsfield" ("created", "modified", "value", "field_name", "id", "usage_id") SELECT "created", "modified", "value", "field_name", "id", "usage_id" FROM "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmodulesettingsfield" RENAME TO "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmodulesettingsfield" RENAME TO "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_7e1499" ON "courseware_xmodulesettingsfield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield"("usage_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_d9ffa990" ON "courseware_xmodulesettingsfield"("usage_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_3216ff68" ON "courseware_xmodulesettingsfield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulesettingsfield_5436e97a" ON "courseware_xmodulesettingsfield"("modified");; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmodulesettingsfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmodulesettingsfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "courseware_xmodulecontentfield" RENAME TO "courseware_xmoduleuserstatesummaryfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "courseware_xmodulecontentfield" RENAME TO "courseware_xmoduleuserstatesummaryfield";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_definition_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_definition_id__field_name"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_7e1499"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_1d304ded"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_xmodulecontentfield_5436e97a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_xmoduleuserstatesummaryfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_xmoduleuserstatesummaryfield" ("created" datetime NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field_name" varchar(64) NOT NULL, "id" integer PRIMARY KEY, "usage_id" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_xmoduleuserstatesummaryfield"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_xmoduleuserstatesummaryfield" ("created", "modified", "value", "usage_id", "field_name", "id") SELECT "created", "modified", "value", "definition_id", "field_name", "id" FROM "courseware_xmoduleuserstatesummaryfield";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_xmoduleuserstatesummaryfield" ("created", "modified", "value", "usage_id", "field_name", "id") SELECT "created", "modified", "value", "definition_id", "field_name", "id" FROM "courseware_xmoduleuserstatesummaryfield";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_xmoduleuserstatesummaryfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_xmoduleuserstatesummaryfield";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_xmoduleuserstatesummaryfield" RENAME TO "courseware_xmoduleuserstatesummaryfield";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_xmoduleuserstatesummaryfield" RENAME TO "courseware_xmoduleuserstatesummaryfield";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmoduleuserstatesummaryfield"("usage_id", "field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_xmodulecontentfield_definition_id__field_name" ON "courseware_xmoduleuserstatesummaryfield"("usage_id", "field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmoduleuserstatesummaryfield"("field_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_7e1499" ON "courseware_xmoduleuserstatesummaryfield"("field_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmoduleuserstatesummaryfield"("usage_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_1d304ded" ON "courseware_xmoduleuserstatesummaryfield"("usage_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmoduleuserstatesummaryfield"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_3216ff68" ON "courseware_xmoduleuserstatesummaryfield"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmoduleuserstatesummaryfield"("modified");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_xmodulecontentfield_5436e97a" ON "courseware_xmoduleuserstatesummaryfield"("modified");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0010_rename_xblock_field_content_to_user_state_summary ); args=('courseware', '0010_rename_xblock_field_content_to_user_state_summary') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0010_rename_xblock_field_content_to_user_state_summary, 2015-05-14 20:30:58.707244); args=['courseware', '0010_rename_xblock_field_content_to_user_state_summary', u'2015-05-14 20:30:58.707244'] | |
> courseware:0011_add_model_StudentFieldOverride | |
DEBUG:south:execute "CREATE TABLE "courseware_studentfieldoverride" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "student_id" integer NOT NULL, "field" varchar(255) NOT NULL, "value" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "courseware_studentfieldoverride" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "student_id" integer NOT NULL, "field" varchar(255) NOT NULL, "value" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride" ("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride" ("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride" ("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride" ("student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0011_add_model_StudentFieldOverride ); args=('courseware', '0011_add_model_StudentFieldOverride') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0011_add_model_StudentFieldOverride, 2015-05-14 20:30:58.739498); args=['courseware', '0011_add_model_StudentFieldOverride', u'2015-05-14 20:30:58.739498'] | |
> courseware:0012_auto__del_unique_studentfieldoverride_course_id_location_student__add_ | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0012_auto__del_unique_studentfieldoverride_course_id_location_student__add_ ); args=('courseware', '0012_auto__del_unique_studentfieldoverride_course_id_location_student__add_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0012_auto__del_unique_studentfieldoverride_course_id_location_student__add_, 2015-05-14 20:30:58.767582); args=['courseware', '0012_auto__del_unique_studentfieldoverride_course_id_location_student__add_', u'2015-05-14 20:30:58.767582'] | |
> courseware:0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_course_id__field__location__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_course_id__field__location__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentfieldoverride" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "value" text NOT NULL, "field" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentfieldoverride" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "value" text NOT NULL, "field" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentfieldoverride"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentfieldoverride" ("id", "course_id", "location", "student_id", "field", "value", "created") SELECT "id", "course_id", "location", "student_id", "field", "value", '2015-05-14 20:30:58.807352' as "created" FROM "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentfieldoverride" ("id", "course_id", "location", "student_id", "field", "value", "created") SELECT "id", "course_id", "location", "student_id", "field", "value", '2015-05-14 20:30:58.807352' as "created" FROM "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentfieldoverride" RENAME TO "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_courseware_studentfieldoverride" RENAME TO "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride"("student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_course_id__field__location__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_42ff452e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("courseware_studentfieldoverride_course_id__field__location__student_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_courseware_studentfieldoverride" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_courseware_studentfieldoverride" ("created" datetime NOT NULL, "student_id" integer NOT NULL, "modified" datetime NOT NULL, "value" text NOT NULL, "field" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("courseware_studentfieldoverride"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_courseware_studentfieldoverride"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_courseware_studentfieldoverride" ("created", "student_id", "value", "field", "location", "course_id", "id", "modified") SELECT "created", "student_id", "value", "field", "location", "course_id", "id", '2015-05-14 20:30:58.821371' as "modified" FROM "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_courseware_studentfieldoverride" ("created", "student_id", "value", "field", "location", "course_id", "id", "modified") SELECT "created", "student_id", "value", "field", "location", "course_id", "id", '2015-05-14 20:30:58.821371' as "modified" FROM "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "DROP TABLE "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.018) DROP TABLE "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_courseware_studentfieldoverride" RENAME TO "courseware_studentfieldoverride";" with params "[]" | |
DEBUG:django.db.backends:(0.003) ALTER TABLE "_south_new_courseware_studentfieldoverride" RENAME TO "courseware_studentfieldoverride";; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_ff48d8e5" ON "courseware_studentfieldoverride"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_b54954de" ON "courseware_studentfieldoverride"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride"("student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_42ff452e" ON "courseware_studentfieldoverride"("student_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "courseware_studentfieldoverride_course_id__field__location__student_id" ON "courseware_studentfieldoverride"("course_id", "field", "location", "student_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "courseware_studentfieldoverride_course_id_344e77afe4983e04" ON "courseware_studentfieldoverride" ("course_id","location","student_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "courseware_studentfieldoverride_course_id_344e77afe4983e04" ON "courseware_studentfieldoverride" ("course_id","location","student_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = courseware AND "south_migrationhistory"."migration" = 0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov ); args=('courseware', '0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (courseware, 0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov, 2015-05-14 20:30:58.858817); args=['courseware', '0013_auto__add_field_studentfieldoverride_created__add_field_studentfieldov', u'2015-05-14 20:30:58.858817'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = studentmodule AND "django_content_type"."app_label" = courseware ); args=('studentmodule', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (student module, courseware, studentmodule); args=[u'student module', 'courseware', 'studentmodule'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = studentmodulehistory AND "django_content_type"."app_label" = courseware ); args=('studentmodulehistory', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (student module history, courseware, studentmodulehistory); args=[u'student module history', 'courseware', 'studentmodulehistory'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = xmoduleuserstatesummaryfield AND "django_content_type"."app_label" = courseware ); args=('xmoduleuserstatesummaryfield', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (x module user state summary field, courseware, xmoduleuserstatesummaryfield); args=[u'x module user state summary field', 'courseware', 'xmoduleuserstatesummaryfield'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = xmodulestudentprefsfield AND "django_content_type"."app_label" = courseware ); args=('xmodulestudentprefsfield', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (x module student prefs field, courseware, xmodulestudentprefsfield); args=[u'x module student prefs field', 'courseware', 'xmodulestudentprefsfield'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = xmodulestudentinfofield AND "django_content_type"."app_label" = courseware ); args=('xmodulestudentinfofield', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (x module student info field, courseware, xmodulestudentinfofield); args=[u'x module student info field', 'courseware', 'xmodulestudentinfofield'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = offlinecomputedgrade AND "django_content_type"."app_label" = courseware ); args=('offlinecomputedgrade', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (offline computed grade, courseware, offlinecomputedgrade); args=[u'offline computed grade', 'courseware', 'offlinecomputedgrade'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = offlinecomputedgradelog AND "django_content_type"."app_label" = courseware ); args=('offlinecomputedgradelog', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (offline computed grade log, courseware, offlinecomputedgradelog); args=[u'offline computed grade log', 'courseware', 'offlinecomputedgradelog'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = studentfieldoverride AND "django_content_type"."app_label" = courseware ); args=('studentfieldoverride', 'courseware') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (student field override, courseware, studentfieldoverride); args=[u'student field override', 'courseware', 'studentfieldoverride'] | |
DEBUG:django.db.backends:(0.000) 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, 25, 26, 27, 28, 29, 30, 31) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(24, 25, 26, 27, 28, 29, 30, 31) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add student module AS "name", 24 AS "content_type_id", add_studentmodule AS "codename" UNION ALL SELECT Can change student module, 24, change_studentmodule UNION ALL SELECT Can delete student module, 24, delete_studentmodule UNION ALL SELECT Can add student module history, 25, add_studentmodulehistory UNION ALL SELECT Can change student module history, 25, change_studentmodulehistory UNION ALL SELECT Can delete student module history, 25, delete_studentmodulehistory UNION ALL SELECT Can add x module user state summary field, 26, add_xmoduleuserstatesummaryfield UNION ALL SELECT Can change x module user state summary field, 26, change_xmoduleuserstatesummaryfield UNION ALL SELECT Can delete x module user state summary field, 26, delete_xmoduleuserstatesummaryfield UNION ALL SELECT Can add x module student prefs field, 27, add_xmodulestudentprefsfield UNION ALL SELECT Can change x module student prefs field, 27, change_xmodulestudentprefsfield UNION ALL SELECT Can delete x module student prefs field, 27, delete_xmodulestudentprefsfield UNION ALL SELECT Can add x module student info field, 28, add_xmodulestudentinfofield UNION ALL SELECT Can change x module student info field, 28, change_xmodulestudentinfofield UNION ALL SELECT Can delete x module student info field, 28, delete_xmodulestudentinfofield UNION ALL SELECT Can add offline computed grade, 29, add_offlinecomputedgrade UNION ALL SELECT Can change offline computed grade, 29, change_offlinecomputedgrade UNION ALL SELECT Can delete offline computed grade, 29, delete_offlinecomputedgrade UNION ALL SELECT Can add offline computed grade log, 30, add_offlinecomputedgradelog UNION ALL SELECT Can change offline computed grade log, 30, change_offlinecomputedgradelog UNION ALL SELECT Can delete offline computed grade log, 30, delete_offlinecomputedgradelog UNION ALL SELECT Can add student field override, 31, add_studentfieldoverride UNION ALL SELECT Can change student field override, 31, change_studentfieldoverride UNION ALL SELECT Can delete student field override, 31, delete_studentfieldoverride; args=(u'Can add student module', 24, u'add_studentmodule', u'Can change student module', 24, u'change_studentmodule', u'Can delete student module', 24, u'delete_studentmodule', u'Can add student module history', 25, u'add_studentmodulehistory', u'Can change student module history', 25, u'change_studentmodulehistory', u'Can delete student module history', 25, u'delete_studentmodulehistory', u'Can add x module user state summary field', 26, u'add_xmoduleuserstatesummaryfield', u'Can change x module user state summary field', 26, u'change_xmoduleuserstatesummaryfield', u'Can delete x module user state summary field', 26, u'delete_xmoduleuserstatesummaryfield', u'Can add x module student prefs field', 27, u'add_xmodulestudentprefsfield', u'Can change x module student prefs field', 27, u'change_xmodulestudentprefsfield', u'Can delete x module student prefs field', 27, u'delete_xmodulestudentprefsfield', u'Can add x module student info field', 28, u'add_xmodulestudentinfofield', u'Can change x module student info field', 28, u'change_xmodulestudentinfofield', u'Can delete x module student info field', 28, u'delete_xmodulestudentinfofield', u'Can add offline computed grade', 29, u'add_offlinecomputedgrade', u'Can change offline computed grade', 29, u'change_offlinecomputedgrade', u'Can delete offline computed grade', 29, u'delete_offlinecomputedgrade', u'Can add offline computed grade log', 30, u'add_offlinecomputedgradelog', u'Can change offline computed grade log', 30, u'change_offlinecomputedgradelog', u'Can delete offline computed grade log', 30, u'delete_offlinecomputedgradelog', u'Can add student field override', 31, u'add_studentfieldoverride', u'Can change student field override', 31, u'change_studentfieldoverride', u'Can delete student field override', 31, u'delete_studentfieldoverride') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = courseware ORDER BY "django_content_type"."name" ASC; args=('courseware',) | |
- Loading initial data for courseware. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.001) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for student: | |
- Migrating forwards to 0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use. | |
> student:0001_initial | |
DEBUG:south:execute "CREATE TABLE "auth_userprofile" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "name" text NOT NULL, "language" text NOT NULL, "location" text NOT NULL, "meta" text NOT NULL, "courseware" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "auth_userprofile" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "name" text NOT NULL, "language" text NOT NULL, "location" text NOT NULL, "meta" text NOT NULL, "courseware" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "auth_registration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "activation_key" varchar(32) NOT NULL UNIQUE)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "auth_registration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "activation_key" varchar(32) NOT NULL UNIQUE); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0001_initial ); args=('student', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0001_initial, 2015-05-14 20:30:59.264973); args=['student', '0001_initial', u'2015-05-14 20:30:59.264973'] | |
> student:0002_text_to_varchar_and_indexes | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" text NOT NULL, "courseware" text NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" text NOT NULL, "courseware" text NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("id", "user_id", "name", "language", "location", "meta", "courseware") SELECT "id", "user_id", "name", "language", "location", "meta", "courseware" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("id", "user_id", "name", "language", "location", "meta", "courseware") SELECT "id", "user_id", "name", "language", "location", "meta", "courseware" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile" ("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile" ("name");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" text NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" text NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile" ("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile" ("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile" ("location");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile" ("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0002_text_to_varchar_and_indexes ); args=('student', '0002_text_to_varchar_and_indexes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0002_text_to_varchar_and_indexes, 2015-05-14 20:30:59.332163); args=['student', '0002_text_to_varchar_and_indexes', u'2015-05-14 20:30:59.332163'] | |
> student:0003_auto__add_usertestgroup | |
DEBUG:south:execute "CREATE TABLE "student_usertestgroup" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(32) NOT NULL, "description" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_usertestgroup" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(32) NOT NULL, "description" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "student_usertestgroup_users" ("id" integer NOT NULL PRIMARY KEY, "usertestgroup_id" integer NOT NULL, "user_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "student_usertestgroup_users" ("id" integer NOT NULL PRIMARY KEY, "usertestgroup_id" integer NOT NULL, "user_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_usertestgroup_users_usertestgroup_id__user_id" ON "student_usertestgroup_users"("usertestgroup_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_usertestgroup_users_usertestgroup_id__user_id" ON "student_usertestgroup_users"("usertestgroup_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usertestgroup_52094d6e" ON "student_usertestgroup" ("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usertestgroup_52094d6e" ON "student_usertestgroup" ("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usertestgroup_users_44f27cdf" ON "student_usertestgroup_users" ("usertestgroup_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usertestgroup_users_44f27cdf" ON "student_usertestgroup_users" ("usertestgroup_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usertestgroup_users_fbfc09f1" ON "student_usertestgroup_users" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usertestgroup_users_fbfc09f1" ON "student_usertestgroup_users" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0003_auto__add_usertestgroup ); args=('student', '0003_auto__add_usertestgroup') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0003_auto__add_usertestgroup, 2015-05-14 20:30:59.364426); args=['student', '0003_auto__add_usertestgroup', u'2015-05-14 20:30:59.364426'] | |
> student:0004_add_email_index | |
DEBUG:south:execute "create unique index email on auth_user (email)" with params "[]" | |
DEBUG:django.db.backends:(0.011) create unique index email on auth_user (email); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0004_add_email_index ); args=('student', '0004_add_email_index') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0004_add_email_index, 2015-05-14 20:30:59.405168); args=['student', '0004_add_email_index', u'2015-05-14 20:30:59.405168'] | |
> student:0005_name_change | |
DEBUG:south:execute "CREATE TABLE "student_pendingemailchange" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "new_email" varchar(255) NOT NULL, "activation_key" varchar(32) NOT NULL UNIQUE)" with params "[]" | |
DEBUG:django.db.backends:(0.006) CREATE TABLE "student_pendingemailchange" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "new_email" varchar(255) NOT NULL, "activation_key" varchar(32) NOT NULL UNIQUE); args=[] | |
DEBUG:south:execute "CREATE TABLE "student_pendingnamechange" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "new_name" varchar(255) NOT NULL, "rationale" varchar(1024) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_pendingnamechange" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "new_name" varchar(255) NOT NULL, "rationale" varchar(1024) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" varchar(255) NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.002) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0005_name_change ); args=('student', '0005_name_change') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0005_name_change, 2015-05-14 20:30:59.462529); args=['student', '0005_name_change', u'2015-05-14 20:30:59.462529'] | |
> student:0006_expand_meta_field | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.005) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.004) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0006_expand_meta_field ); args=('student', '0006_expand_meta_field') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0006_expand_meta_field, 2015-05-14 20:30:59.505919); args=['student', '0006_expand_meta_field', u'2015-05-14 20:30:59.505919'] | |
> student:0007_convert_to_utf8 | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0007_convert_to_utf8 ); args=('student', '0007_convert_to_utf8') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0007_convert_to_utf8, 2015-05-14 20:30:59.533119); args=['student', '0007_convert_to_utf8', u'2015-05-14 20:30:59.533119'] | |
> student:0008__auto__add_courseregistration | |
DEBUG:south:execute "CREATE TABLE "student_courseregistration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "course_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_courseregistration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "course_id" integer NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0008__auto__add_courseregistration ); args=('student', '0008__auto__add_courseregistration') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0008__auto__add_courseregistration, 2015-05-14 20:30:59.576036); args=['student', '0008__auto__add_courseregistration', u'2015-05-14 20:30:59.576036'] | |
> student:0009_auto__del_courseregistration__add_courseenrollment | |
DEBUG:south:execute "DROP TABLE "student_courseregistration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseregistration";; args=[] | |
DEBUG:south:execute "CREATE TABLE "student_courseenrollment" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "course_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_courseenrollment" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "course_id" integer NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0009_auto__del_courseregistration__add_courseenrollment ); args=('student', '0009_auto__del_courseregistration__add_courseenrollment') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0009_auto__del_courseregistration__add_courseenrollment, 2015-05-14 20:30:59.600510); args=['student', '0009_auto__del_courseregistration__add_courseenrollment', u'2015-05-14 20:30:59.600510'] | |
> student:0010_auto__chg_field_courseenrollment_course_id | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_courseenrollment_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_courseenrollment_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL UNIQUE, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL UNIQUE, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("id", "user_id", "course_id") SELECT "id", "user_id", "course_id" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("id", "user_id", "course_id") SELECT "id", "user_id", "course_id" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0010_auto__chg_field_courseenrollment_course_id ); args=('student', '0010_auto__chg_field_courseenrollment_course_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0010_auto__chg_field_courseenrollment_course_id, 2015-05-14 20:30:59.631093); args=['student', '0010_auto__chg_field_courseenrollment_course_id', u'2015-05-14 20:30:59.631093'] | |
> student:0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use ); args=('student', '0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use, 2015-05-14 20:30:59.653789); args=['student', '0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use', u'2015-05-14 20:30:59.653789'] | |
> student:0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6) NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6) NULL, "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255) NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255) NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25) NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25) NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY, "occupation" varchar(255) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY, "occupation" varchar(255) NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt ); args=('student', '0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt, 2015-05-14 20:30:59.755150); args=['student', '0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt', u'2015-05-14 20:30:59.755150'] | |
> student:0013_auto__chg_field_userprofile_meta | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY, "occupation" varchar(255))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(255), "id" integer PRIMARY KEY, "occupation" varchar(255)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0013_auto__chg_field_userprofile_meta ); args=('student', '0013_auto__chg_field_userprofile_meta') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0013_auto__chg_field_userprofile_meta, 2015-05-14 20:30:59.790966); args=['student', '0013_auto__chg_field_userprofile_meta', u'2015-05-14 20:30:59.790966'] | |
> student:0014_auto__del_courseenrollment | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0014_auto__del_courseenrollment ); args=('student', '0014_auto__del_courseenrollment') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0014_auto__del_courseenrollment, 2015-05-14 20:30:59.816040); args=['student', '0014_auto__del_courseenrollment', u'2015-05-14 20:30:59.816040'] | |
> student:0015_auto__add_courseenrollment__add_unique_courseenrollment_user_course_id | |
DEBUG:south:execute "CREATE TABLE "student_courseenrollment" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "student_courseenrollment" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment" ("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0015_auto__add_courseenrollment__add_unique_courseenrollment_user_course_id ); args=('student', '0015_auto__add_courseenrollment__add_unique_courseenrollment_user_course_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0015_auto__add_courseenrollment__add_unique_courseenrollment_user_course_id, 2015-05-14 20:30:59.845095); args=['student', '0015_auto__add_courseenrollment__add_unique_courseenrollment_user_course_id', u'2015-05-14 20:30:59.845095'] | |
> student:0016_auto__add_field_courseenrollment_date__chg_field_userprofile_country | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "date" datetime NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "date" datetime NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("id", "user_id", "course_id") SELECT "id", "user_id", "course_id" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("id", "user_id", "course_id") SELECT "id", "user_id", "course_id" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2) NULL, "id" integer PRIMARY KEY, "occupation" varchar(255))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2) NULL, "id" integer PRIMARY KEY, "occupation" varchar(255)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id", "occupation" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0016_auto__add_field_courseenrollment_date__chg_field_userprofile_country ); args=('student', '0016_auto__add_field_courseenrollment_date__chg_field_userprofile_country') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0016_auto__add_field_courseenrollment_date__chg_field_userprofile_country, 2015-05-14 20:30:59.894977); args=['student', '0016_auto__add_field_courseenrollment_date__chg_field_userprofile_country', u'2015-05-14 20:30:59.894977'] | |
> student:0017_rename_date_to_created | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("course_id", "created", "user_id", "id") SELECT "course_id", "date", "user_id", "id" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("course_id", "created", "user_id", "id") SELECT "course_id", "date", "user_id", "id" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0017_rename_date_to_created ); args=('student', '0017_rename_date_to_created') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0017_rename_date_to_created, 2015-05-14 20:30:59.930439); args=['student', '0017_rename_date_to_created', u'2015-05-14 20:30:59.930439'] | |
> student:0018_auto | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment" ("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0018_auto ); args=('student', '0018_auto') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0018_auto, 2015-05-14 20:30:59.955864); args=['student', '0018_auto', u'2015-05-14 20:30:59.955864'] | |
> student:0019_create_approved_demographic_fields_fall_2012 | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "telephone_number" varchar(25), "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "telephone_number", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "date_of_birth" date, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "date_of_birth", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "country", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "country", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer NULL, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY, "level_of_education" varchar(6) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "id" integer PRIMARY KEY, "level_of_education" varchar(6) NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text NULL, "mailing_address" text, "id" integer PRIMARY KEY, "level_of_education" varchar(6))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text NULL, "mailing_address" text, "id" integer PRIMARY KEY, "level_of_education" varchar(6)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id", "level_of_education") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id", "level_of_education" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id", "level_of_education") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "id", "level_of_education" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile" ("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile" ("gender");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0019_create_approved_demographic_fields_fall_2012 ); args=('student', '0019_create_approved_demographic_fields_fall_2012') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0019_create_approved_demographic_fields_fall_2012, 2015-05-14 20:31:00.068657); args=['student', '0019_create_approved_demographic_fields_fall_2012', u'2015-05-14 20:31:00.068657'] | |
> student:0020_add_test_center_user | |
DEBUG:south:execute "CREATE TABLE "student_testcenteruser" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_updated_at" datetime NOT NULL, "candidate_id" integer NULL, "client_candidate_id" varchar(50) NOT NULL, "first_name" varchar(30) NOT NULL, "last_name" varchar(50) NOT NULL, "middle_name" varchar(30) NOT NULL, "suffix" varchar(255) NOT NULL, "salutation" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "city" varchar(32) NOT NULL, "state" varchar(20) NOT NULL, "postal_code" varchar(16) NOT NULL, "country" varchar(3) NOT NULL, "phone" varchar(35) NOT NULL, "extension" varchar(8) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "fax" varchar(35) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "company_name" varchar(50) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "student_testcenteruser" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_updated_at" datetime NOT NULL, "candidate_id" integer NULL, "client_candidate_id" varchar(50) NOT NULL, "first_name" varchar(30) NOT NULL, "last_name" varchar(50) NOT NULL, "middle_name" varchar(30) NOT NULL, "suffix" varchar(255) NOT NULL, "salutation" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "city" varchar(32) NOT NULL, "state" varchar(20) NOT NULL, "postal_code" varchar(16) NOT NULL, "country" varchar(3) NOT NULL, "phone" varchar(35) NOT NULL, "extension" varchar(8) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "fax" varchar(35) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "company_name" varchar(50) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser" ("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser" ("created_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser" ("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser" ("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser" ("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser" ("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser" ("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser" ("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser" ("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser" ("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser" ("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser" ("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser" ("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser" ("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser" ("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser" ("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser" ("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser" ("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser" ("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser" ("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser" ("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser" ("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser" ("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser" ("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser" ("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser" ("phone_country_code");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0020_add_test_center_user ); args=('student', '0020_add_test_center_user') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0020_add_test_center_user, 2015-05-14 20:31:00.257485); args=['student', '0020_add_test_center_user', u'2015-05-14 20:31:00.257485'] | |
> student:0021_remove_askbot | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("email"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("email"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("id", "username", "first_name", "last_name", "email", "password", "is_staff", "is_active", "is_superuser", "last_login", "date_joined") SELECT "id", "username", "first_name", "last_name", "email", "password", "is_staff", "is_active", "is_superuser", "last_login", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("id", "username", "first_name", "last_name", "email", "password", "is_staff", "is_active", "is_superuser", "last_login", "date_joined") SELECT "id", "username", "first_name", "last_name", "email", "password", "is_staff", "is_active", "is_superuser", "last_login", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.015) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "id" integer PRIMARY KEY, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "id", "is_superuser", "is_staff", "last_login", "password", "email", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_2"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_user_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_user" ("username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "is_active" bool NOT NULL, "id" integer PRIMARY KEY, "is_superuser" bool NOT NULL, "is_staff" bool NOT NULL, "last_login" datetime NOT NULL, "password" varchar(128) NOT NULL, "email" varchar(75) NOT NULL UNIQUE, "date_joined" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_user"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_user"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_user" ("username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined") SELECT "username", "first_name", "last_name", "is_active", "email", "is_superuser", "is_staff", "last_login", "password", "id", "date_joined" FROM "auth_user";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_user";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_user" RENAME TO "auth_user";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0021_remove_askbot ); args=('student', '0021_remove_askbot') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0021_remove_askbot, 2015-05-14 20:31:00.404469); args=['student', '0021_remove_askbot', u'2015-05-14 20:31:00.404469'] | |
> student:0022_auto__add_courseenrollmentallowed__add_unique_courseenrollmentallowed_ | |
DEBUG:south:execute "CREATE TABLE "student_courseenrollmentallowed" ("id" integer NOT NULL PRIMARY KEY, "email" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "student_courseenrollmentallowed" ("id" integer NOT NULL PRIMARY KEY, "email" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed" ("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed" ("email");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed" ("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0022_auto__add_courseenrollmentallowed__add_unique_courseenrollmentallowed_ ); args=('student', '0022_auto__add_courseenrollmentallowed__add_unique_courseenrollmentallowed_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0022_auto__add_courseenrollmentallowed__add_unique_courseenrollmentallowed_, 2015-05-14 20:31:00.439518); args=['student', '0022_auto__add_courseenrollmentallowed__add_unique_courseenrollmentallowed_', u'2015-05-14 20:31:00.439518'] | |
> student:0023_add_test_center_registration | |
DEBUG:south:execute "CREATE TABLE "student_testcenterregistration" ("id" integer NOT NULL PRIMARY KEY, "testcenter_user_id" integer NOT NULL, "course_id" varchar(128) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_updated_at" datetime NOT NULL, "client_authorization_id" varchar(20) NOT NULL UNIQUE, "exam_series_code" varchar(15) NOT NULL, "eligibility_appointment_date_first" date NOT NULL, "eligibility_appointment_date_last" date NOT NULL, "accommodation_code" varchar(64) NOT NULL, "accommodation_request" varchar(1024) NOT NULL, "uploaded_at" datetime NULL, "processed_at" datetime NULL, "upload_status" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "authorization_id" integer NULL, "confirmed_at" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_testcenterregistration" ("id" integer NOT NULL PRIMARY KEY, "testcenter_user_id" integer NOT NULL, "course_id" varchar(128) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_updated_at" datetime NOT NULL, "client_authorization_id" varchar(20) NOT NULL UNIQUE, "exam_series_code" varchar(15) NOT NULL, "eligibility_appointment_date_first" date NOT NULL, "eligibility_appointment_date_last" date NOT NULL, "accommodation_code" varchar(64) NOT NULL, "accommodation_request" varchar(1024) NOT NULL, "uploaded_at" datetime NULL, "processed_at" datetime NULL, "upload_status" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "authorization_id" integer NULL, "confirmed_at" datetime NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_fb51d0b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_5c4ba5ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f5618512"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_527932c1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_355bfc27"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_d706dd46"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_bccf26d4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_a4d52209"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_458544cf"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_6c1886de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_8d37351"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f84f7de6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_3b1c9c31"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime NULL, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime NULL, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_testcenteruser"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_testcenteruser" ("id", "user_id", "created_at", "updated_at", "user_updated_at", "candidate_id", "client_candidate_id", "first_name", "last_name", "middle_name", "suffix", "salutation", "address_1", "address_2", "address_3", "city", "state", "postal_code", "country", "phone", "extension", "phone_country_code", "fax", "fax_country_code", "company_name") SELECT "id", "user_id", "created_at", "updated_at", "user_updated_at", "candidate_id", "client_candidate_id", "first_name", "last_name", "middle_name", "suffix", "salutation", "address_1", "address_2", "address_3", "city", "state", "postal_code", "country", "phone", "extension", "phone_country_code", "fax", "fax_country_code", "company_name" FROM "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_testcenteruser" ("id", "user_id", "created_at", "updated_at", "user_updated_at", "candidate_id", "client_candidate_id", "first_name", "last_name", "middle_name", "suffix", "salutation", "address_1", "address_2", "address_3", "city", "state", "postal_code", "country", "phone", "extension", "phone_country_code", "fax", "fax_country_code", "company_name") SELECT "id", "user_id", "created_at", "updated_at", "user_updated_at", "candidate_id", "client_candidate_id", "first_name", "last_name", "middle_name", "suffix", "salutation", "address_1", "address_2", "address_3", "city", "state", "postal_code", "country", "phone", "extension", "phone_country_code", "fax", "fax_country_code", "company_name" FROM "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_3b1c9c31"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f84f7de6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_8d37351"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_6c1886de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_458544cf"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_a4d52209"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_bccf26d4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_d706dd46"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_355bfc27"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_527932c1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f5618512"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_5c4ba5ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_fb51d0b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime NULL, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "extension" varchar(8) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime NULL, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "extension" varchar(8) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_testcenteruser"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at") SELECT "last_name", "suffix", "updated_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at" FROM "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at") SELECT "last_name", "suffix", "updated_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at" FROM "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.002) ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_fb51d0b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_5c4ba5ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f5618512"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_527932c1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_355bfc27"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_d706dd46"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_bccf26d4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_a4d52209"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_458544cf"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_6c1886de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_8d37351"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f84f7de6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_3b1c9c31"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_testcenteruser"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", "upload_status") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", '' as "upload_status" FROM "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", "upload_status") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", '' as "upload_status" FROM "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_3b1c9c31"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f84f7de6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_8d37351"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_6c1886de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_458544cf"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_a4d52209"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_bccf26d4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_d706dd46"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_355bfc27"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_527932c1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f5618512"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_5c4ba5ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_fb51d0b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "extension" varchar(8) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "extension" varchar(8) NOT NULL, "fax_country_code" varchar(3) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_testcenteruser"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", "upload_error_message") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", '' as "upload_error_message" FROM "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", "upload_error_message") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "fax_country_code", "extension", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at", '' as "upload_error_message" FROM "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_fb51d0b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_5c4ba5ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f5618512"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_527932c1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_355bfc27"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_d706dd46"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_bccf26d4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_a4d52209"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_458544cf"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_6c1886de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_8d37351"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_f84f7de6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_testcenteruser_3b1c9c31"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_testcenteruser_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "confirmed_at" datetime NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_testcenteruser" ("last_name" varchar(50) NOT NULL, "suffix" varchar(255) NOT NULL, "confirmed_at" datetime NULL, "updated_at" datetime NOT NULL, "processed_at" datetime, "postal_code" varchar(16) NOT NULL, "salutation" varchar(50) NOT NULL, "id" integer PRIMARY KEY, "city" varchar(32) NOT NULL, "first_name" varchar(30) NOT NULL, "middle_name" varchar(30) NOT NULL, "phone_country_code" varchar(3) NOT NULL, "upload_status" varchar(20) NOT NULL, "state" varchar(20) NOT NULL, "upload_error_message" varchar(512) NOT NULL, "candidate_id" integer, "company_name" varchar(50) NOT NULL, "fax" varchar(35) NOT NULL, "user_updated_at" datetime NOT NULL, "phone" varchar(35) NOT NULL, "user_id" integer NOT NULL UNIQUE, "uploaded_at" datetime, "fax_country_code" varchar(3) NOT NULL, "extension" varchar(8) NOT NULL, "country" varchar(3) NOT NULL, "client_candidate_id" varchar(50) NOT NULL, "address_1" varchar(40) NOT NULL, "address_2" varchar(40) NOT NULL, "address_3" varchar(40) NOT NULL, "created_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_testcenteruser"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_testcenteruser"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "upload_error_message", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "upload_error_message", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at" FROM "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_testcenteruser" ("last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "upload_error_message", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at") SELECT "last_name", "suffix", "updated_at", "processed_at", "postal_code", "salutation", "id", "city", "first_name", "middle_name", "phone_country_code", "upload_status", "state", "upload_error_message", "candidate_id", "company_name", "fax", "user_updated_at", "phone", "user_id", "uploaded_at", "extension", "fax_country_code", "country", "client_candidate_id", "address_1", "address_2", "address_3", "created_at" FROM "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_testcenteruser" RENAME TO "student_testcenteruser";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_fb51d0b4" ON "student_testcenteruser"("phone_country_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_5c4ba5ab" ON "student_testcenteruser"("extension");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f5618512" ON "student_testcenteruser"("country");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_527932c1" ON "student_testcenteruser"("postal_code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_355bfc27" ON "student_testcenteruser"("state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_d706dd46" ON "student_testcenteruser"("city");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_bccf26d4" ON "student_testcenteruser"("last_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_a4d52209" ON "student_testcenteruser"("first_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_458544cf" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_6c1886de" ON "student_testcenteruser"("candidate_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_8d37351" ON "student_testcenteruser"("user_updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_f84f7de6" ON "student_testcenteruser"("updated_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_3b1c9c31" ON "student_testcenteruser"("created_at");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_testcenteruser_ca9021a2" ON "student_testcenteruser" ("company_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_testcenteruser_ca9021a2" ON "student_testcenteruser" ("company_name");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_testcenteruser_client_candidate_id" ON "student_testcenteruser"("client_candidate_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_testcenteruser_client_candidate_id" ON "student_testcenteruser"("client_candidate_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0023_add_test_center_registration ); args=('student', '0023_add_test_center_registration') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0023_add_test_center_registration, 2015-05-14 20:31:00.631487); args=['student', '0023_add_test_center_registration', u'2015-05-14 20:31:00.631487'] | |
> student:0024_add_allow_certificate | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_fca3d292"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "id", "level_of_education", "allow_certificate") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "id", "level_of_education", 'True' as "allow_certificate" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "id", "level_of_education", "allow_certificate") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "id", "level_of_education", 'True' as "allow_certificate" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0024_add_allow_certificate ); args=('student', '0024_add_allow_certificate') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0024_add_allow_certificate, 2015-05-14 20:31:00.676208); args=['student', '0024_add_allow_certificate', u'2015-05-14 20:31:00.676208'] | |
> student:0025_auto__add_field_courseenrollmentallowed_auto_enroll | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_3904588a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollmentallowed" ("course_id" varchar(255) NOT NULL, "auto_enroll" bool NOT NULL, "created" datetime, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_student_courseenrollmentallowed" ("course_id" varchar(255) NOT NULL, "auto_enroll" bool NOT NULL, "created" datetime, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollmentallowed"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollmentallowed" ("id", "email", "course_id", "created", "auto_enroll") SELECT "id", "email", "course_id", "created", 'False' as "auto_enroll" FROM "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollmentallowed" ("id", "email", "course_id", "created", "auto_enroll") SELECT "id", "email", "course_id", "created", 'False' as "auto_enroll" FROM "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollmentallowed" RENAME TO "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollmentallowed" RENAME TO "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed"("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed"("email");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0025_auto__add_field_courseenrollmentallowed_auto_enroll ); args=('student', '0025_auto__add_field_courseenrollmentallowed_auto_enroll') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0025_auto__add_field_courseenrollmentallowed_auto_enroll, 2015-05-14 20:31:00.720621); args=['student', '0025_auto__add_field_courseenrollmentallowed_auto_enroll', u'2015-05-14 20:31:00.720621'] | |
> student:0026_auto__remove_index_student_testcenterregistration_accommodation_request | |
DEBUG:south:execute "DROP INDEX "student_testcenterregistration_fe557fd4"" with params "[]" | |
DEBUG:django.db.backends:(0.000) DROP INDEX "student_testcenterregistration_fe557fd4"; args=[] | |
FATAL ERROR - The following SQL query failed: DROP INDEX "student_testcenterregistration_fe557fd4" | |
The error was: no such index: student_testcenterregistration_fe557fd4 | |
-- skipping delete_index of student_testcenterregistration.accommodation_request (index does not exist) | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0026_auto__remove_index_student_testcenterregistration_accommodation_request ); args=('student', '0026_auto__remove_index_student_testcenterregistration_accommodation_request') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0026_auto__remove_index_student_testcenterregistration_accommodation_request, 2015-05-14 20:31:00.751996); args=['student', '0026_auto__remove_index_student_testcenterregistration_accommodation_request', u'2015-05-14 20:31:00.751996'] | |
> student:0027_add_active_flag_and_mode_to_courseware_enrollment | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "is_active" bool NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("course_id" varchar(255) NOT NULL, "is_active" bool NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("course_id", "user_id", "id", "created", "is_active") SELECT "course_id", "user_id", "id", "created", 'True' as "is_active" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("course_id", "user_id", "id", "created", "is_active") SELECT "course_id", "user_id", "id", "created", 'True' as "is_active" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("user_id" integer NOT NULL, "created" datetime, "is_active" bool NOT NULL, "mode" varchar(100) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("user_id" integer NOT NULL, "created" datetime, "is_active" bool NOT NULL, "mode" varchar(100) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("course_id", "is_active", "user_id", "id", "created", "mode") SELECT "course_id", "is_active", "user_id", "id", "created", 'honor' as "mode" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("course_id", "is_active", "user_id", "id", "created", "mode") SELECT "course_id", "is_active", "user_id", "id", "created", 'honor' as "mode" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0027_add_active_flag_and_mode_to_courseware_enrollment ); args=('student', '0027_add_active_flag_and_mode_to_courseware_enrollment') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0027_add_active_flag_and_mode_to_courseware_enrollment, 2015-05-14 20:31:00.811502); args=['student', '0027_add_active_flag_and_mode_to_courseware_enrollment', u'2015-05-14 20:31:00.811502'] | |
> student:0028_auto__add_userstanding | |
DEBUG:south:execute "CREATE TABLE "student_userstanding" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "account_status" varchar(31) NOT NULL, "changed_by_id" integer NOT NULL, "standing_last_changed_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_userstanding" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "account_status" varchar(31) NOT NULL, "changed_by_id" integer NOT NULL, "standing_last_changed_at" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_userstanding_16905482" ON "student_userstanding" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_userstanding_16905482" ON "student_userstanding" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0028_auto__add_userstanding ); args=('student', '0028_auto__add_userstanding') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0028_auto__add_userstanding, 2015-05-14 20:31:00.851931); args=['student', '0028_auto__add_userstanding', u'2015-05-14 20:31:00.851931'] | |
> student:0029_add_lookup_table_between_user_and_anonymous_student_id | |
DEBUG:south:execute "CREATE TABLE "student_anonymoususerid" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "anonymous_user_id" varchar(16) NOT NULL UNIQUE, "course_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_anonymoususerid" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "anonymous_user_id" varchar(16) NOT NULL UNIQUE, "course_id" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid" ("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0029_add_lookup_table_between_user_and_anonymous_student_id ); args=('student', '0029_add_lookup_table_between_user_and_anonymous_student_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0029_add_lookup_table_between_user_and_anonymous_student_id, 2015-05-14 20:31:00.894012); args=['student', '0029_add_lookup_table_between_user_and_anonymous_student_id', u'2015-05-14 20:31:00.894012'] | |
> student:0029_remove_pearson | |
DEBUG:south:execute "DROP TABLE "student_testcenteruser";" with params "[]" | |
DEBUG:django.db.backends:(0.002) DROP TABLE "student_testcenteruser";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_testcenterregistration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_testcenterregistration";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0029_remove_pearson ); args=('student', '0029_remove_pearson') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0029_remove_pearson, 2015-05-14 20:31:00.922790); args=['student', '0029_remove_pearson', u'2015-05-14 20:31:00.922790'] | |
> student:0030_auto__chg_field_anonymoususerid_anonymous_user_id | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_anonymoususerid_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_anonymoususerid_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_anonymoususerid_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_anonymoususerid_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_anonymoususerid" ("course_id" varchar(255) NOT NULL, "anonymous_user_id" varchar(32) NOT NULL UNIQUE UNIQUE, "user_id" integer NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_anonymoususerid" ("course_id" varchar(255) NOT NULL, "anonymous_user_id" varchar(32) NOT NULL UNIQUE UNIQUE, "user_id" integer NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_anonymoususerid"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_anonymoususerid" ("id", "user_id", "anonymous_user_id", "course_id") SELECT "id", "user_id", "anonymous_user_id", "course_id" FROM "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_anonymoususerid" ("id", "user_id", "anonymous_user_id", "course_id") SELECT "id", "user_id", "anonymous_user_id", "course_id" FROM "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_anonymoususerid" RENAME TO "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_anonymoususerid" RENAME TO "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid"("user_id");; args=[] | |
DEBUG:south:execute " | |
CREATE TABLE student_anonymoususerid_temp_archive | |
AS SELECT * FROM student_anonymoususerid WHERE LENGTH(anonymous_user_id) = 16 | |
" with params "[]" | |
DEBUG:django.db.backends:(0.001) | |
CREATE TABLE student_anonymoususerid_temp_archive | |
AS SELECT * FROM student_anonymoususerid WHERE LENGTH(anonymous_user_id) = 16 | |
; args=[] | |
DEBUG:south:execute " | |
DELETE FROM student_anonymoususerid | |
WHERE LENGTH(anonymous_user_id) = 16 | |
" with params "[]" | |
DEBUG:django.db.backends:(0.000) | |
DELETE FROM student_anonymoususerid | |
WHERE LENGTH(anonymous_user_id) = 16 | |
; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0030_auto__chg_field_anonymoususerid_anonymous_user_id ); args=('student', '0030_auto__chg_field_anonymoususerid_anonymous_user_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0030_auto__chg_field_anonymoususerid_anonymous_user_id, 2015-05-14 20:31:00.961982); args=['student', '0030_auto__chg_field_anonymoususerid_anonymous_user_id', u'2015-05-14 20:31:00.961982'] | |
> student:0031_drop_student_anonymoususerid_temp_archive | |
- Migration 'student:0031_drop_student_anonymoususerid_temp_archive' is marked for no-dry-run. | |
DEBUG:south:execute "DROP TABLE student_anonymoususerid_temp_archive" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE student_anonymoususerid_temp_archive; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0031_drop_student_anonymoususerid_temp_archive ); args=('student', '0031_drop_student_anonymoususerid_temp_archive') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0031_drop_student_anonymoususerid_temp_archive, 2015-05-14 20:31:00.988903); args=['student', '0031_drop_student_anonymoususerid_temp_archive', u'2015-05-14 20:31:00.988903'] | |
> student:0032_add_field_UserProfile_country_add_field_UserProfile_city | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_fca3d292"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text, "mailing_address" text, "country" varchar(2) NULL, "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "level_of_education" varchar(6))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text, "mailing_address" text, "country" varchar(2) NULL, "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "level_of_education" varchar(6)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "level_of_education", "id", "allow_certificate", "goals") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "level_of_education", "id", "allow_certificate", "goals" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "level_of_education", "id", "allow_certificate", "goals") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "level_of_education", "id", "allow_certificate", "goals" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_fca3d292"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("city" text NULL, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("city" text NULL, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education") SELECT "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0032_add_field_UserProfile_country_add_field_UserProfile_city ); args=('student', '0032_add_field_UserProfile_country_add_field_UserProfile_city') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0032_add_field_UserProfile_country_add_field_UserProfile_city, 2015-05-14 20:31:01.043437); args=['student', '0032_add_field_UserProfile_country_add_field_UserProfile_city', u'2015-05-14 20:31:01.043437'] | |
> student:0032_auto__add_loginfailures | |
DEBUG:south:execute "CREATE TABLE "student_loginfailures" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "failure_count" integer NOT NULL, "lockout_until" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "student_loginfailures" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "failure_count" integer NOT NULL, "lockout_until" datetime NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_loginfailures_fbfc09f1" ON "student_loginfailures" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_loginfailures_fbfc09f1" ON "student_loginfailures" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0032_auto__add_loginfailures ); args=('student', '0032_auto__add_loginfailures') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0032_auto__add_loginfailures, 2015-05-14 20:31:01.073400); args=['student', '0032_auto__add_loginfailures', u'2015-05-14 20:31:01.073400'] | |
> student:0033_auto__add_passwordhistory | |
DEBUG:south:execute "CREATE TABLE "student_passwordhistory" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "password" varchar(128) NOT NULL, "time_set" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_passwordhistory" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "password" varchar(128) NOT NULL, "time_set" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_passwordhistory_fbfc09f1" ON "student_passwordhistory" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_passwordhistory_fbfc09f1" ON "student_passwordhistory" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0033_auto__add_passwordhistory ); args=('student', '0033_auto__add_passwordhistory') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0033_auto__add_passwordhistory, 2015-05-14 20:31:01.106519); args=['student', '0033_auto__add_passwordhistory', u'2015-05-14 20:31:01.106519'] | |
> student:0034_auto__add_courseaccessrole | |
DEBUG:south:execute "CREATE TABLE "student_courseaccessrole" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "org" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "role" varchar(64) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "student_courseaccessrole" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "org" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "role" varchar(64) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseaccessrole_user_id__org__course_id__role" ON "student_courseaccessrole"("user_id", "org", "course_id", "role");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseaccessrole_user_id__org__course_id__role" ON "student_courseaccessrole"("user_id", "org", "course_id", "role");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_anonymoususerid_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_anonymoususerid_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_anonymoususerid_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_student_anonymoususerid_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_anonymoususerid" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL, "anonymous_user_id" varchar(32) NOT NULL UNIQUE, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_anonymoususerid" ("course_id" varchar(255) NOT NULL, "user_id" integer NOT NULL, "anonymous_user_id" varchar(32) NOT NULL UNIQUE, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_anonymoususerid"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_anonymoususerid"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_anonymoususerid" ("course_id", "anonymous_user_id", "user_id", "id") SELECT "course_id", "anonymous_user_id", "user_id", "id" FROM "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_anonymoususerid" ("course_id", "anonymous_user_id", "user_id", "id") SELECT "course_id", "anonymous_user_id", "user_id", "id" FROM "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_anonymoususerid" RENAME TO "student_anonymoususerid";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_anonymoususerid" RENAME TO "student_anonymoususerid";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_fbfc09f1" ON "student_anonymoususerid"("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_anonymoususerid_ff48d8e5" ON "student_anonymoususerid"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollment_user_id__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollment" ("user_id" integer NOT NULL, "created" datetime, "is_active" bool NOT NULL, "mode" varchar(100) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollment" ("user_id" integer NOT NULL, "created" datetime, "is_active" bool NOT NULL, "mode" varchar(100) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollment"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollment"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollment" ("user_id", "created", "is_active", "mode", "course_id", "id") SELECT "user_id", "created", "is_active", "mode", "course_id", "id" FROM "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollment" ("user_id", "created", "is_active", "mode", "course_id", "id") SELECT "user_id", "created", "is_active", "mode", "course_id", "id" FROM "student_courseenrollment";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollment";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_courseenrollment" RENAME TO "student_courseenrollment";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_3216ff68" ON "student_courseenrollment"("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_ff48d8e5" ON "student_courseenrollment"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollment_fbfc09f1" ON "student_courseenrollment"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollment_user_id__course_id" ON "student_courseenrollment"("user_id", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_3904588a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_courseenrollmentallowed_3216ff68"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_courseenrollmentallowed" ("course_id" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created" datetime, "id" integer PRIMARY KEY, "auto_enroll" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_courseenrollmentallowed" ("course_id" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created" datetime, "id" integer PRIMARY KEY, "auto_enroll" bool NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_courseenrollmentallowed"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_courseenrollmentallowed"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_courseenrollmentallowed" ("course_id", "auto_enroll", "created", "id", "email") SELECT "course_id", "auto_enroll", "created", "id", "email" FROM "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_courseenrollmentallowed" ("course_id", "auto_enroll", "created", "id", "email") SELECT "course_id", "auto_enroll", "created", "id", "email" FROM "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_courseenrollmentallowed" RENAME TO "student_courseenrollmentallowed";" with params "[]" | |
DEBUG:django.db.backends:(0.004) ALTER TABLE "_south_new_student_courseenrollmentallowed" RENAME TO "student_courseenrollmentallowed";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_courseenrollmentallowed_email__course_id" ON "student_courseenrollmentallowed"("email", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed"("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3904588a" ON "student_courseenrollmentallowed"("email");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_ff48d8e5" ON "student_courseenrollmentallowed"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed"("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseenrollmentallowed_3216ff68" ON "student_courseenrollmentallowed"("created");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0034_auto__add_courseaccessrole ); args=('student', '0034_auto__add_courseaccessrole') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0034_auto__add_courseaccessrole, 2015-05-14 20:31:01.183810); args=['student', '0034_auto__add_courseaccessrole', u'2015-05-14 20:31:01.183810'] | |
> student:0035_access_roles | |
- Migration 'student:0035_access_roles' is marked for no-dry-run. | |
DEBUG:root:Using MongoDB for static content serving at host=localhost port=27017 db=xcontent | |
DEBUG:xmodule.modulestore.xml:========> Starting courselike import from content-mit-7012x | |
DEBUG:django.db.backends:(0.000) SELECT "auth_group"."id", "auth_group"."name" FROM "auth_group" WHERE ("auth_group"."name" = course_creator_group OR "auth_group"."name" LIKE staff% ESCAPE '\' OR "auth_group"."name" LIKE instructor% ESCAPE '\' OR "auth_group"."name" LIKE beta\_testers% ESCAPE '\' ); args=('course_creator_group', u'staff%', u'instructor%', u'beta\\_testers%') | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0035_access_roles ); args=('student', '0035_access_roles') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0035_access_roles, 2015-05-14 20:31:01.246552); args=['student', '0035_access_roles', u'2015-05-14 20:31:01.246552'] | |
> student:0036_access_roles_orgless | |
- Migration 'student:0036_access_roles_orgless' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) SELECT "auth_group"."id", "auth_group"."name" FROM "auth_group" WHERE (("auth_group"."name" LIKE staff% ESCAPE '\' OR "auth_group"."name" LIKE instructor% ESCAPE '\' OR "auth_group"."name" LIKE beta\_testers% ESCAPE '\' ) AND NOT ("auth_group"."name" LIKE %/% ESCAPE '\' )); args=(u'staff%', u'instructor%', u'beta\\_testers%', u'%/%') | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0036_access_roles_orgless ); args=('student', '0036_access_roles_orgless') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0036_access_roles_orgless, 2015-05-14 20:31:01.278985); args=['student', '0036_access_roles_orgless', u'2015-05-14 20:31:01.278985'] | |
> student:0037_auto__add_courseregistrationcode | |
DEBUG:south:execute "CREATE TABLE "student_courseregistrationcode" ("id" integer NOT NULL PRIMARY KEY, "code" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "transaction_group_name" varchar(255) NULL, "created_by_id" integer NOT NULL, "created_at" datetime NOT NULL, "redeemed_by_id" integer NULL, "redeemed_at" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_courseregistrationcode" ("id" integer NOT NULL PRIMARY KEY, "code" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "transaction_group_name" varchar(255) NULL, "created_by_id" integer NOT NULL, "created_at" datetime NOT NULL, "redeemed_by_id" integer NULL, "redeemed_at" datetime NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseregistrationcode_65da3d2c" ON "student_courseregistrationcode" ("code");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseregistrationcode_65da3d2c" ON "student_courseregistrationcode" ("code");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseregistrationcode_ff48d8e5" ON "student_courseregistrationcode" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseregistrationcode_ff48d8e5" ON "student_courseregistrationcode" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseregistrationcode_2f396e73" ON "student_courseregistrationcode" ("transaction_group_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseregistrationcode_2f396e73" ON "student_courseregistrationcode" ("transaction_group_name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseregistrationcode_b5de30be" ON "student_courseregistrationcode" ("created_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseregistrationcode_b5de30be" ON "student_courseregistrationcode" ("created_by_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_courseregistrationcode_e151467a" ON "student_courseregistrationcode" ("redeemed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_courseregistrationcode_e151467a" ON "student_courseregistrationcode" ("redeemed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0037_auto__add_courseregistrationcode ); args=('student', '0037_auto__add_courseregistrationcode') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0037_auto__add_courseregistrationcode, 2015-05-14 20:31:01.321162); args=['student', '0037_auto__add_courseregistrationcode', u'2015-05-14 20:31:01.321162'] | |
> student:0038_auto__add_usersignupsource | |
DEBUG:south:execute "CREATE TABLE "student_usersignupsource" ("id" integer NOT NULL PRIMARY KEY, "user_id_id" integer NOT NULL, "site" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_usersignupsource" ("id" integer NOT NULL PRIMARY KEY, "user_id_id" integer NOT NULL, "site" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usersignupsource_2ccaea20" ON "student_usersignupsource" ("user_id_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usersignupsource_2ccaea20" ON "student_usersignupsource" ("user_id_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource" ("site");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource" ("site");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0038_auto__add_usersignupsource ); args=('student', '0038_auto__add_usersignupsource') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0038_auto__add_usersignupsource, 2015-05-14 20:31:01.359907); args=['student', '0038_auto__add_usersignupsource', u'2015-05-14 20:31:01.359907'] | |
> student:0039_auto__del_courseregistrationcode | |
DEBUG:south:execute "DROP TABLE "student_courseregistrationcode";" with params "[]" | |
DEBUG:django.db.backends:(0.003) DROP TABLE "student_courseregistrationcode";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0039_auto__del_courseregistrationcode ); args=('student', '0039_auto__del_courseregistrationcode') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0039_auto__del_courseregistrationcode, 2015-05-14 20:31:01.395887); args=['student', '0039_auto__del_courseregistrationcode', u'2015-05-14 20:31:01.395887'] | |
> student:0040_auto__del_field_usersignupsource_user_id__add_field_usersignupsource_u | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_usersignupsource_e00a881a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_usersignupsource_2ccaea20"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_usersignupsource" ("id" integer PRIMARY KEY, "site" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "_south_new_student_usersignupsource" ("id" integer PRIMARY KEY, "site" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_usersignupsource"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_usersignupsource" ("id", "site") SELECT "id", "site" FROM "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_usersignupsource" ("id", "site") SELECT "id", "site" FROM "student_usersignupsource";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_usersignupsource";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_usersignupsource" RENAME TO "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_usersignupsource" RENAME TO "student_usersignupsource";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource"("site");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource"("site");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_usersignupsource_e00a881a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_usersignupsource" ("user_id" integer NOT NULL, "id" integer PRIMARY KEY, "site" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_usersignupsource" ("user_id" integer NOT NULL, "id" integer PRIMARY KEY, "site" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_usersignupsource"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_usersignupsource"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_usersignupsource" ("id", "site", "user_id") SELECT "id", "site", '0' as "user_id" FROM "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_usersignupsource" ("id", "site", "user_id") SELECT "id", "site", '0' as "user_id" FROM "student_usersignupsource";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_usersignupsource";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_usersignupsource" RENAME TO "student_usersignupsource";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_usersignupsource" RENAME TO "student_usersignupsource";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource"("site");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_usersignupsource_e00a881a" ON "student_usersignupsource"("site");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0040_auto__del_field_usersignupsource_user_id__add_field_usersignupsource_u ); args=('student', '0040_auto__del_field_usersignupsource_user_id__add_field_usersignupsource_u') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0040_auto__del_field_usersignupsource_user_id__add_field_usersignupsource_u, 2015-05-14 20:31:01.444311); args=['student', '0040_auto__del_field_usersignupsource_user_id__add_field_usersignupsource_u', u'2015-05-14 20:31:01.444311'] | |
> student:0041_add_dashboard_config | |
DEBUG:south:execute "CREATE TABLE "student_dashboardconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "recent_enrollment_time_delta" integer unsigned NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_dashboardconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "recent_enrollment_time_delta" integer unsigned NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_dashboardconfiguration_16905482" ON "student_dashboardconfiguration" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_dashboardconfiguration_16905482" ON "student_dashboardconfiguration" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0041_add_dashboard_config ); args=('student', '0041_add_dashboard_config') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0041_add_dashboard_config, 2015-05-14 20:31:01.482272); args=['student', '0041_add_dashboard_config', u'2015-05-14 20:31:01.482272'] | |
> student:0042_grant_sales_admin_roles | |
- Migration 'student:0042_grant_sales_admin_roles' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) SELECT "student_courseaccessrole"."role", "student_courseaccessrole"."user_id", "student_courseaccessrole"."course_id", "student_courseaccessrole"."org", "student_courseaccessrole"."id" FROM "student_courseaccessrole" WHERE "student_courseaccessrole"."role" = finance_admin ; args=('finance_admin',) | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0042_grant_sales_admin_roles ); args=('student', '0042_grant_sales_admin_roles') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0042_grant_sales_admin_roles, 2015-05-14 20:31:01.516238); args=['student', '0042_grant_sales_admin_roles', u'2015-05-14 20:31:01.516238'] | |
> student:0043_auto__add_linkedinaddtoprofileconfiguration | |
DEBUG:south:execute "CREATE TABLE "student_linkedinaddtoprofileconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "dashboard_tracking_code" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "student_linkedinaddtoprofileconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "dashboard_tracking_code" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0043_auto__add_linkedinaddtoprofileconfiguration ); args=('student', '0043_auto__add_linkedinaddtoprofileconfiguration') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0043_auto__add_linkedinaddtoprofileconfiguration, 2015-05-14 20:31:01.555627); args=['student', '0043_auto__add_linkedinaddtoprofileconfiguration', u'2015-05-14 20:31:01.555627'] | |
> student:0044_linkedin_add_company_identifier | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_linkedinaddtoprofileconfiguration_16905482"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code" text NOT NULL, "enabled" bool NOT NULL, "changed_by_id" integer, "change_date" datetime NOT NULL, "company_identifier" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code" text NOT NULL, "enabled" bool NOT NULL, "changed_by_id" integer, "change_date" datetime NOT NULL, "company_identifier" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_linkedinaddtoprofileconfiguration" ("id", "change_date", "changed_by_id", "enabled", "dashboard_tracking_code", "company_identifier") SELECT "id", "change_date", "changed_by_id", "enabled", "dashboard_tracking_code", '' as "company_identifier" FROM "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_linkedinaddtoprofileconfiguration" ("id", "change_date", "changed_by_id", "enabled", "dashboard_tracking_code", "company_identifier") SELECT "id", "change_date", "changed_by_id", "enabled", "dashboard_tracking_code", '' as "company_identifier" FROM "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_linkedinaddtoprofileconfiguration" RENAME TO "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_linkedinaddtoprofileconfiguration" RENAME TO "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration"("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration"("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0044_linkedin_add_company_identifier ); args=('student', '0044_linkedin_add_company_identifier') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0044_linkedin_add_company_identifier, 2015-05-14 20:31:01.601349); args=['student', '0044_linkedin_add_company_identifier', u'2015-05-14 20:31:01.601349'] | |
> student:0045_add_trk_partner_to_linkedin_config | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("student_linkedinaddtoprofileconfiguration_16905482"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code" text NOT NULL, "trk_partner_name" varchar(10) NOT NULL, "enabled" bool NOT NULL, "changed_by_id" integer, "change_date" datetime NOT NULL, "company_identifier" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code" text NOT NULL, "trk_partner_name" varchar(10) NOT NULL, "enabled" bool NOT NULL, "changed_by_id" integer, "change_date" datetime NOT NULL, "company_identifier" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_student_linkedinaddtoprofileconfiguration"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code", "enabled", "changed_by_id", "change_date", "company_identifier", "id", "trk_partner_name") SELECT "dashboard_tracking_code", "enabled", "changed_by_id", "change_date", "company_identifier", "id", '' as "trk_partner_name" FROM "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_student_linkedinaddtoprofileconfiguration" ("dashboard_tracking_code", "enabled", "changed_by_id", "change_date", "company_identifier", "id", "trk_partner_name") SELECT "dashboard_tracking_code", "enabled", "changed_by_id", "change_date", "company_identifier", "id", '' as "trk_partner_name" FROM "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "DROP TABLE "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_student_linkedinaddtoprofileconfiguration" RENAME TO "student_linkedinaddtoprofileconfiguration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_student_linkedinaddtoprofileconfiguration" RENAME TO "student_linkedinaddtoprofileconfiguration";; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration"("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_linkedinaddtoprofileconfiguration_16905482" ON "student_linkedinaddtoprofileconfiguration"("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0045_add_trk_partner_to_linkedin_config ); args=('student', '0045_add_trk_partner_to_linkedin_config') | |
DEBUG:django.db.backends:(0.001) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0045_add_trk_partner_to_linkedin_config, 2015-05-14 20:31:01.646050); args=['student', '0045_add_trk_partner_to_linkedin_config', u'2015-05-14 20:31:01.646050'] | |
> student:0046_auto__add_entranceexamconfiguration__add_unique_entranceexamconfigurat | |
DEBUG:south:execute "CREATE TABLE "student_entranceexamconfiguration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL, "skip_entrance_exam" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "student_entranceexamconfiguration" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL, "skip_entrance_exam" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_entranceexamconfiguration_user_id__course_id" ON "student_entranceexamconfiguration"("user_id", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_entranceexamconfiguration_user_id__course_id" ON "student_entranceexamconfiguration"("user_id", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_entranceexamconfiguration_fbfc09f1" ON "student_entranceexamconfiguration" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_entranceexamconfiguration_fbfc09f1" ON "student_entranceexamconfiguration" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_entranceexamconfiguration_ff48d8e5" ON "student_entranceexamconfiguration" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_entranceexamconfiguration_ff48d8e5" ON "student_entranceexamconfiguration" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_entranceexamconfiguration_3216ff68" ON "student_entranceexamconfiguration" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_entranceexamconfiguration_3216ff68" ON "student_entranceexamconfiguration" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_entranceexamconfiguration_8aac229" ON "student_entranceexamconfiguration" ("updated");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_entranceexamconfiguration_8aac229" ON "student_entranceexamconfiguration" ("updated");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0046_auto__add_entranceexamconfiguration__add_unique_entranceexamconfigurat ); args=('student', '0046_auto__add_entranceexamconfiguration__add_unique_entranceexamconfigurat') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0046_auto__add_entranceexamconfiguration__add_unique_entranceexamconfigurat, 2015-05-14 20:31:01.704630); args=['student', '0046_auto__add_entranceexamconfiguration__add_unique_entranceexamconfigurat', u'2015-05-14 20:31:01.704630'] | |
> student:0047_add_bio_field | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_fca3d292"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("city" text, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "bio" varchar(3000) NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "level_of_education" varchar(6))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("city" text, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "bio" varchar(3000) NULL, "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "goals" text, "mailing_address" text, "country" varchar(2), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "level_of_education" varchar(6)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("city", "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "country", "level_of_education", "id", "allow_certificate", "goals") SELECT "city", "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "country", "level_of_education", "id", "allow_certificate", "goals" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("city", "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "country", "level_of_education", "id", "allow_certificate", "goals") SELECT "city", "user_id", "name", "language", "gender", "courseware", "year_of_birth", "meta", "location", "mailing_address", "country", "level_of_education", "id", "allow_certificate", "goals" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0047_add_bio_field ); args=('student', '0047_add_bio_field') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0047_add_bio_field, 2015-05-14 20:31:01.758807); args=['student', '0047_add_bio_field', u'2015-05-14 20:31:01.758807'] | |
> student:0048_add_profile_image_version | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_fca3d292"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_8a7ac9ab"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_52094d6e"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("auth_userprofile_b54954de"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("sqlite_autoindex_auth_userprofile_1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_auth_userprofile" ("city" text, "profile_image_uploaded_at" datetime NULL, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "bio" varchar(3000), "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_auth_userprofile" ("city" text, "profile_image_uploaded_at" datetime NULL, "user_id" integer NOT NULL UNIQUE, "name" varchar(255) NOT NULL, "language" varchar(255) NOT NULL, "bio" varchar(3000), "gender" varchar(6), "courseware" varchar(255) NOT NULL, "year_of_birth" integer, "meta" text NOT NULL, "location" varchar(255) NOT NULL, "mailing_address" text, "country" varchar(2), "level_of_education" varchar(6), "id" integer PRIMARY KEY, "allow_certificate" bool NOT NULL, "goals" text); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("auth_userprofile"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_auth_userprofile"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_auth_userprofile" ("city", "user_id", "name", "language", "bio", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education") SELECT "city", "user_id", "name", "language", "bio", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education" FROM "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_auth_userprofile" ("city", "user_id", "name", "language", "bio", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education") SELECT "city", "user_id", "name", "language", "bio", "gender", "courseware", "year_of_birth", "meta", "location", "goals", "mailing_address", "country", "id", "allow_certificate", "level_of_education" FROM "auth_userprofile";; args=[] | |
DEBUG:south:execute "DROP TABLE "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "auth_userprofile";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_auth_userprofile" RENAME TO "auth_userprofile";; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_fca3d292" ON "auth_userprofile"("gender");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_8a7ac9ab" ON "auth_userprofile"("language");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_52094d6e" ON "auth_userprofile"("name");; args=[] | |
DEBUG:south:execute "CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "auth_userprofile_b54954de" ON "auth_userprofile"("location");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0048_add_profile_image_version ); args=('student', '0048_add_profile_image_version') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0048_add_profile_image_version, 2015-05-14 20:31:01.812195); args=['student', '0048_add_profile_image_version', u'2015-05-14 20:31:01.812195'] | |
> student:0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use | |
DEBUG:south:execute "CREATE TABLE "student_languageproficiency" ("id" integer NOT NULL PRIMARY KEY, "user_profile_id" integer NOT NULL, "code" varchar(16) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "student_languageproficiency" ("id" integer NOT NULL PRIMARY KEY, "user_profile_id" integer NOT NULL, "code" varchar(16) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "student_languageproficiency_code__user_profile_id" ON "student_languageproficiency"("code", "user_profile_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "student_languageproficiency_code__user_profile_id" ON "student_languageproficiency"("code", "user_profile_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "student_languageproficiency_634d39b9" ON "student_languageproficiency" ("user_profile_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "student_languageproficiency_634d39b9" ON "student_languageproficiency" ("user_profile_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = student AND "south_migrationhistory"."migration" = 0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use ); args=('student', '0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (student, 0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use, 2015-05-14 20:31:01.858849); args=['student', '0049_auto__add_languageproficiency__add_unique_languageproficiency_code_use', u'2015-05-14 20:31:01.858849'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = anonymoususerid AND "django_content_type"."app_label" = student ); args=('anonymoususerid', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (anonymous user id, student, anonymoususerid); args=[u'anonymous user id', 'student', 'anonymoususerid'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = userstanding AND "django_content_type"."app_label" = student ); args=('userstanding', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user standing, student, userstanding); args=[u'user standing', 'student', 'userstanding'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = userprofile AND "django_content_type"."app_label" = student ); args=('userprofile', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user profile, student, userprofile); args=[u'user profile', 'student', 'userprofile'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = usersignupsource AND "django_content_type"."app_label" = student ); args=('usersignupsource', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user signup source, student, usersignupsource); args=[u'user signup source', 'student', 'usersignupsource'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = usertestgroup AND "django_content_type"."app_label" = student ); args=('usertestgroup', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user test group, student, usertestgroup); args=[u'user test group', 'student', 'usertestgroup'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = registration AND "django_content_type"."app_label" = student ); args=('registration', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (registration, student, registration); args=[u'registration', 'student', 'registration'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = pendingnamechange AND "django_content_type"."app_label" = student ); args=('pendingnamechange', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (pending name change, student, pendingnamechange); args=[u'pending name change', 'student', 'pendingnamechange'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = pendingemailchange AND "django_content_type"."app_label" = student ); args=('pendingemailchange', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (pending email change, student, pendingemailchange); args=[u'pending email change', 'student', 'pendingemailchange'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = passwordhistory AND "django_content_type"."app_label" = student ); args=('passwordhistory', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (password history, student, passwordhistory); args=[u'password history', 'student', 'passwordhistory'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = loginfailures AND "django_content_type"."app_label" = student ); args=('loginfailures', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (login failures, student, loginfailures); args=[u'login failures', 'student', 'loginfailures'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseenrollment AND "django_content_type"."app_label" = student ); args=('courseenrollment', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course enrollment, student, courseenrollment); args=[u'course enrollment', 'student', 'courseenrollment'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseenrollmentallowed AND "django_content_type"."app_label" = student ); args=('courseenrollmentallowed', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course enrollment allowed, student, courseenrollmentallowed); args=[u'course enrollment allowed', 'student', 'courseenrollmentallowed'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseaccessrole AND "django_content_type"."app_label" = student ); args=('courseaccessrole', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course access role, student, courseaccessrole); args=[u'course access role', 'student', 'courseaccessrole'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = dashboardconfiguration AND "django_content_type"."app_label" = student ); args=('dashboardconfiguration', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (dashboard configuration, student, dashboardconfiguration); args=[u'dashboard configuration', 'student', 'dashboardconfiguration'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = linkedinaddtoprofileconfiguration AND "django_content_type"."app_label" = student ); args=('linkedinaddtoprofileconfiguration', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (linked in add to profile configuration, student, linkedinaddtoprofileconfiguration); args=[u'linked in add to profile configuration', 'student', 'linkedinaddtoprofileconfiguration'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = entranceexamconfiguration AND "django_content_type"."app_label" = student ); args=('entranceexamconfiguration', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (entrance exam configuration, student, entranceexamconfiguration); args=[u'entrance exam configuration', 'student', 'entranceexamconfiguration'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = languageproficiency AND "django_content_type"."app_label" = student ); args=('languageproficiency', 'student') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (language proficiency, student, languageproficiency); args=[u'language proficiency', 'student', 'languageproficiency'] | |
DEBUG:django.db.backends:(0.000) 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 (32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add anonymous user id AS "name", 32 AS "content_type_id", add_anonymoususerid AS "codename" UNION ALL SELECT Can change anonymous user id, 32, change_anonymoususerid UNION ALL SELECT Can delete anonymous user id, 32, delete_anonymoususerid UNION ALL SELECT Can add user standing, 33, add_userstanding UNION ALL SELECT Can change user standing, 33, change_userstanding UNION ALL SELECT Can delete user standing, 33, delete_userstanding UNION ALL SELECT Can add user profile, 34, add_userprofile UNION ALL SELECT Can change user profile, 34, change_userprofile UNION ALL SELECT Can delete user profile, 34, delete_userprofile UNION ALL SELECT Can add user signup source, 35, add_usersignupsource UNION ALL SELECT Can change user signup source, 35, change_usersignupsource UNION ALL SELECT Can delete user signup source, 35, delete_usersignupsource UNION ALL SELECT Can add user test group, 36, add_usertestgroup UNION ALL SELECT Can change user test group, 36, change_usertestgroup UNION ALL SELECT Can delete user test group, 36, delete_usertestgroup UNION ALL SELECT Can add registration, 37, add_registration UNION ALL SELECT Can change registration, 37, change_registration UNION ALL SELECT Can delete registration, 37, delete_registration UNION ALL SELECT Can add pending name change, 38, add_pendingnamechange UNION ALL SELECT Can change pending name change, 38, change_pendingnamechange UNION ALL SELECT Can delete pending name change, 38, delete_pendingnamechange UNION ALL SELECT Can add pending email change, 39, add_pendingemailchange UNION ALL SELECT Can change pending email change, 39, change_pendingemailchange UNION ALL SELECT Can delete pending email change, 39, delete_pendingemailchange UNION ALL SELECT Can add password history, 40, add_passwordhistory UNION ALL SELECT Can change password history, 40, change_passwordhistory UNION ALL SELECT Can delete password history, 40, delete_passwordhistory UNION ALL SELECT Can add login failures, 41, add_loginfailures UNION ALL SELECT Can change login failures, 41, change_loginfailures UNION ALL SELECT Can delete login failures, 41, delete_loginfailures UNION ALL SELECT Can add course enrollment, 42, add_courseenrollment UNION ALL SELECT Can change course enrollment, 42, change_courseenrollment UNION ALL SELECT Can delete course enrollment, 42, delete_courseenrollment UNION ALL SELECT Can add course enrollment allowed, 43, add_courseenrollmentallowed UNION ALL SELECT Can change course enrollment allowed, 43, change_courseenrollmentallowed UNION ALL SELECT Can delete course enrollment allowed, 43, delete_courseenrollmentallowed UNION ALL SELECT Can add course access role, 44, add_courseaccessrole UNION ALL SELECT Can change course access role, 44, change_courseaccessrole UNION ALL SELECT Can delete course access role, 44, delete_courseaccessrole UNION ALL SELECT Can add dashboard configuration, 45, add_dashboardconfiguration UNION ALL SELECT Can change dashboard configuration, 45, change_dashboardconfiguration UNION ALL SELECT Can delete dashboard configuration, 45, delete_dashboardconfiguration UNION ALL SELECT Can add linked in add to profile configuration, 46, add_linkedinaddtoprofileconfiguration UNION ALL SELECT Can change linked in add to profile configuration, 46, change_linkedinaddtoprofileconfiguration UNION ALL SELECT Can delete linked in add to profile configuration, 46, delete_linkedinaddtoprofileconfiguration UNION ALL SELECT Can add entrance exam configuration, 47, add_entranceexamconfiguration UNION ALL SELECT Can change entrance exam configuration, 47, change_entranceexamconfiguration UNION ALL SELECT Can delete entrance exam configuration, 47, delete_entranceexamconfiguration UNION ALL SELECT Can add language proficiency, 48, add_languageproficiency UNION ALL SELECT Can change language proficiency, 48, change_languageproficiency UNION ALL SELECT Can delete language proficiency, 48, delete_languageproficiency; args=(u'Can add anonymous user id', 32, u'add_anonymoususerid', u'Can change anonymous user id', 32, u'change_anonymoususerid', u'Can delete anonymous user id', 32, u'delete_anonymoususerid', u'Can add user standing', 33, u'add_userstanding', u'Can change user standing', 33, u'change_userstanding', u'Can delete user standing', 33, u'delete_userstanding', u'Can add user profile', 34, u'add_userprofile', u'Can change user profile', 34, u'change_userprofile', u'Can delete user profile', 34, u'delete_userprofile', u'Can add user signup source', 35, u'add_usersignupsource', u'Can change user signup source', 35, u'change_usersignupsource', u'Can delete user signup source', 35, u'delete_usersignupsource', u'Can add user test group', 36, u'add_usertestgroup', u'Can change user test group', 36, u'change_usertestgroup', u'Can delete user test group', 36, u'delete_usertestgroup', u'Can add registration', 37, u'add_registration', u'Can change registration', 37, u'change_registration', u'Can delete registration', 37, u'delete_registration', u'Can add pending name change', 38, u'add_pendingnamechange', u'Can change pending name change', 38, u'change_pendingnamechange', u'Can delete pending name change', 38, u'delete_pendingnamechange', u'Can add pending email change', 39, u'add_pendingemailchange', u'Can change pending email change', 39, u'change_pendingemailchange', u'Can delete pending email change', 39, u'delete_pendingemailchange', u'Can add password history', 40, u'add_passwordhistory', u'Can change password history', 40, u'change_passwordhistory', u'Can delete password history', 40, u'delete_passwordhistory', u'Can add login failures', 41, u'add_loginfailures', u'Can change login failures', 41, u'change_loginfailures', u'Can delete login failures', 41, u'delete_loginfailures', u'Can add course enrollment', 42, u'add_courseenrollment', u'Can change course enrollment', 42, u'change_courseenrollment', u'Can delete course enrollment', 42, u'delete_courseenrollment', u'Can add course enrollment allowed', 43, u'add_courseenrollmentallowed', u'Can change course enrollment allowed', 43, u'change_courseenrollmentallowed', u'Can delete course enrollment allowed', 43, u'delete_courseenrollmentallowed', u'Can add course access role', 44, u'add_courseaccessrole', u'Can change course access role', 44, u'change_courseaccessrole', u'Can delete course access role', 44, u'delete_courseaccessrole', u'Can add dashboard configuration', 45, u'add_dashboardconfiguration', u'Can change dashboard configuration', 45, u'change_dashboardconfiguration', u'Can delete dashboard configuration', 45, u'delete_dashboardconfiguration', u'Can add linked in add to profile configuration', 46, u'add_linkedinaddtoprofileconfiguration', u'Can change linked in add to profile configuration', 46, u'change_linkedinaddtoprofileconfiguration', u'Can delete linked in add to profile configuration', 46, u'delete_linkedinaddtoprofileconfiguration', u'Can add entrance exam configuration', 47, u'add_entranceexamconfiguration', u'Can change entrance exam configuration', 47, u'change_entranceexamconfiguration', u'Can delete entrance exam configuration', 47, u'delete_entranceexamconfiguration', u'Can add language proficiency', 48, u'add_languageproficiency', u'Can change language proficiency', 48, u'change_languageproficiency', u'Can delete language proficiency', 48, u'delete_languageproficiency') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = student ORDER BY "django_content_type"."name" ASC; args=('student',) | |
- Loading initial data for student. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for track: | |
- Migrating forwards to 0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch. | |
> track:0001_initial | |
DEBUG:south:execute "CREATE TABLE "track_trackinglog" ("id" integer NOT NULL PRIMARY KEY, "dtcreated" datetime NOT NULL, "username" varchar(32) NOT NULL, "ip" varchar(32) NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(32) NOT NULL, "event" text NOT NULL, "agent" varchar(256) NOT NULL, "page" varchar(32) NULL, "time" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "track_trackinglog" ("id" integer NOT NULL PRIMARY KEY, "dtcreated" datetime NOT NULL, "username" varchar(32) NOT NULL, "ip" varchar(32) NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(32) NOT NULL, "event" text NOT NULL, "agent" varchar(256) NOT NULL, "page" varchar(32) NULL, "time" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = track AND "south_migrationhistory"."migration" = 0001_initial ); args=('track', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (track, 0001_initial, 2015-05-14 20:31:02.324368); args=['track', '0001_initial', u'2015-05-14 20:31:02.324368'] | |
> track:0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(32) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "event" text NOT NULL, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "id" integer PRIMARY KEY, "page" varchar(32))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(32) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "event" text NOT NULL, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "id" integer PRIMARY KEY, "page" varchar(32)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_track_trackinglog"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_track_trackinglog" ("id", "dtcreated", "username", "ip", "event_source", "event_type", "event", "agent", "page", "time", "host") SELECT "id", "dtcreated", "username", "ip", "event_source", "event_type", "event", "agent", "page", "time", '' as "host" FROM "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_track_trackinglog" ("id", "dtcreated", "username", "ip", "event_source", "event_type", "event", "agent", "page", "time", "host") SELECT "id", "dtcreated", "username", "ip", "event_source", "event_type", "event", "agent", "page", "time", '' as "host" FROM "track_trackinglog";; args=[] | |
DEBUG:south:execute "DROP TABLE "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "track_trackinglog";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(512) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "id" integer PRIMARY KEY, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "event" text NOT NULL, "page" varchar(32))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(512) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "id" integer PRIMARY KEY, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "event" text NOT NULL, "page" varchar(32)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_track_trackinglog"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_track_trackinglog" ("username", "dtcreated", "event_source", "event_type", "ip", "agent", "event", "host", "time", "id", "page") SELECT "username", "dtcreated", "event_source", "event_type", "ip", "agent", "event", "host", "time", "id", "page" FROM "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_track_trackinglog" ("username", "dtcreated", "event_source", "event_type", "ip", "agent", "event", "host", "time", "id", "page") SELECT "username", "dtcreated", "event_source", "event_type", "ip", "agent", "event", "host", "time", "id", "page" FROM "track_trackinglog";; args=[] | |
DEBUG:south:execute "DROP TABLE "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "track_trackinglog";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(512) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "event" text NOT NULL, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "id" integer PRIMARY KEY, "page" varchar(512) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_track_trackinglog" ("username" varchar(32) NOT NULL, "dtcreated" datetime NOT NULL, "event_source" varchar(32) NOT NULL, "event_type" varchar(512) NOT NULL, "ip" varchar(32) NOT NULL, "agent" varchar(256) NOT NULL, "event" text NOT NULL, "host" varchar(64) NOT NULL, "time" datetime NOT NULL, "id" integer PRIMARY KEY, "page" varchar(512) NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("track_trackinglog"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_track_trackinglog"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_track_trackinglog" ("username", "dtcreated", "event_source", "event_type", "ip", "agent", "id", "host", "time", "event", "page") SELECT "username", "dtcreated", "event_source", "event_type", "ip", "agent", "id", "host", "time", "event", "page" FROM "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_track_trackinglog" ("username", "dtcreated", "event_source", "event_type", "ip", "agent", "id", "host", "time", "event", "page") SELECT "username", "dtcreated", "event_source", "event_type", "ip", "agent", "id", "host", "time", "event", "page" FROM "track_trackinglog";; args=[] | |
DEBUG:south:execute "DROP TABLE "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "track_trackinglog";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_track_trackinglog" RENAME TO "track_trackinglog";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = track AND "south_migrationhistory"."migration" = 0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch ); args=('track', '0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (track, 0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch, 2015-05-14 20:31:02.350231); args=['track', '0002_auto__add_field_trackinglog_host__chg_field_trackinglog_event_type__ch', u'2015-05-14 20:31:02.350231'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = trackinglog AND "django_content_type"."app_label" = track ); args=('trackinglog', 'track') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (tracking log, track, trackinglog); args=[u'tracking log', 'track', 'trackinglog'] | |
DEBUG:django.db.backends:(0.000) 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 (49) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(49,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add tracking log AS "name", 49 AS "content_type_id", add_trackinglog AS "codename" UNION ALL SELECT Can change tracking log, 49, change_trackinglog UNION ALL SELECT Can delete tracking log, 49, delete_trackinglog; args=(u'Can add tracking log', 49, u'add_trackinglog', u'Can change tracking log', 49, u'change_trackinglog', u'Can delete tracking log', 49, u'delete_trackinglog') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = track ORDER BY "django_content_type"."name" ASC; args=('track',) | |
- Loading initial data for track. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for util: | |
- Migrating forwards to 0002_default_rate_limit_config. | |
> util:0001_initial | |
DEBUG:south:execute "CREATE TABLE "util_ratelimitconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "util_ratelimitconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "util_ratelimitconfiguration_16905482" ON "util_ratelimitconfiguration" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.004) CREATE INDEX "util_ratelimitconfiguration_16905482" ON "util_ratelimitconfiguration" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = util AND "south_migrationhistory"."migration" = 0001_initial ); args=('util', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (util, 0001_initial, 2015-05-14 20:31:02.604352); args=['util', '0001_initial', u'2015-05-14 20:31:02.604352'] | |
> util:0002_default_rate_limit_config | |
- Migration 'util:0002_default_rate_limit_config' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) INSERT INTO "util_ratelimitconfiguration" ("change_date", "changed_by_id", "enabled") VALUES (2015-05-14 20:31:02.616936, None, True); args=[u'2015-05-14 20:31:02.616936', None, True] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = util AND "south_migrationhistory"."migration" = 0002_default_rate_limit_config ); args=('util', '0002_default_rate_limit_config') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (util, 0002_default_rate_limit_config, 2015-05-14 20:31:02.619351); args=['util', '0002_default_rate_limit_config', u'2015-05-14 20:31:02.619351'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = ratelimitconfiguration AND "django_content_type"."app_label" = util ); args=('ratelimitconfiguration', 'util') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (rate limit configuration, util, ratelimitconfiguration); args=[u'rate limit configuration', 'util', 'ratelimitconfiguration'] | |
DEBUG:django.db.backends:(0.000) 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 (50) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(50,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add rate limit configuration AS "name", 50 AS "content_type_id", add_ratelimitconfiguration AS "codename" UNION ALL SELECT Can change rate limit configuration, 50, change_ratelimitconfiguration UNION ALL SELECT Can delete rate limit configuration, 50, delete_ratelimitconfiguration; args=(u'Can add rate limit configuration', 50, u'add_ratelimitconfiguration', u'Can change rate limit configuration', 50, u'change_ratelimitconfiguration', u'Can delete rate limit configuration', 50, u'delete_ratelimitconfiguration') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = util ORDER BY "django_content_type"."name" ASC; args=('util',) | |
- Loading initial data for util. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for certificates: | |
- Migrating forwards to 0020_certificatehtmlviewconfiguration_data. | |
> certificates:0001_added_generatedcertificates | |
DEBUG:south:execute "CREATE TABLE "certificates_generatedcertificate" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "certificates_generatedcertificate" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0001_added_generatedcertificates ); args=('certificates', '0001_added_generatedcertificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0001_added_generatedcertificates, 2015-05-14 20:31:03.058497); args=['certificates', '0001_added_generatedcertificates', u'2015-05-14 20:31:03.058497'] | |
> certificates:0002_auto__add_field_generatedcertificate_download_url | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("certificate_id" varchar(32) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "download_url" varchar(128) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("certificate_id" varchar(32) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "download_url" varchar(128) NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("id", "user_id", "certificate_id") SELECT "id", "user_id", "certificate_id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("id", "user_id", "certificate_id") SELECT "id", "user_id", "certificate_id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0002_auto__add_field_generatedcertificate_download_url ); args=('certificates', '0002_auto__add_field_generatedcertificate_download_url') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0002_auto__add_field_generatedcertificate_download_url, 2015-05-14 20:31:03.084891); args=['certificates', '0002_auto__add_field_generatedcertificate_download_url', u'2015-05-14 20:31:03.084891'] | |
> certificates:0003_auto__add_field_generatedcertificate_enabled | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("enabled" bool NOT NULL, "certificate_id" varchar(32) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "download_url" varchar(128))" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("enabled" bool NOT NULL, "certificate_id" varchar(32) NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "download_url" varchar(128)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("certificate_id", "user_id", "id", "download_url", "enabled") SELECT "certificate_id", "user_id", "id", "download_url", 'False' as "enabled" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("certificate_id", "user_id", "id", "download_url", "enabled") SELECT "certificate_id", "user_id", "id", "download_url", 'False' as "enabled" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0003_auto__add_field_generatedcertificate_enabled ); args=('certificates', '0003_auto__add_field_generatedcertificate_enabled') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0003_auto__add_field_generatedcertificate_enabled, 2015-05-14 20:31:03.107772); args=['certificates', '0003_auto__add_field_generatedcertificate_enabled', u'2015-05-14 20:31:03.107772'] | |
> certificates:0004_auto__add_field_generatedcertificate_graded_certificate_id__add_field_ | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_certificate_id" varchar(32) NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_certificate_id" varchar(32) NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("enabled", "certificate_id", "user_id", "id", "download_url") SELECT "enabled", "certificate_id", "user_id", "id", "download_url" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("enabled", "certificate_id", "user_id", "id", "download_url") SELECT "enabled", "certificate_id", "user_id", "id", "download_url" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128) NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128) NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "certificate_id", "enabled", "download_url", "graded_certificate_id", "id") SELECT "user_id", "certificate_id", "enabled", "download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "certificate_id", "enabled", "download_url", "graded_certificate_id", "id") SELECT "user_id", "certificate_id", "enabled", "download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0004_auto__add_field_generatedcertificate_graded_certificate_id__add_field_ ); args=('certificates', '0004_auto__add_field_generatedcertificate_graded_certificate_id__add_field_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0004_auto__add_field_generatedcertificate_graded_certificate_id__add_field_, 2015-05-14 20:31:03.148755); args=['certificates', '0004_auto__add_field_generatedcertificate_graded_certificate_id__add_field_', u'2015-05-14 20:31:03.148755'] | |
> certificates:0005_auto__add_field_generatedcertificate_name | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5), "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5), "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", "name") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", '' as "name" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", "name") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", '' as "name" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0005_auto__add_field_generatedcertificate_name ); args=('certificates', '0005_auto__add_field_generatedcertificate_name') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0005_auto__add_field_generatedcertificate_name, 2015-05-14 20:31:03.175336); args=['certificates', '0005_auto__add_field_generatedcertificate_name', u'2015-05-14 20:31:03.175336'] | |
> certificates:0006_auto__chg_field_generatedcertificate_certificate_id | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5), "certificate_id" varchar(32) NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5), "certificate_id" varchar(32) NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "name", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "name", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "name", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "name", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0006_auto__chg_field_generatedcertificate_certificate_id ); args=('certificates', '0006_auto__chg_field_generatedcertificate_certificate_id') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0006_auto__chg_field_generatedcertificate_certificate_id, 2015-05-14 20:31:03.201470); args=['certificates', '0006_auto__chg_field_generatedcertificate_certificate_id', u'2015-05-14 20:31:03.201470'] | |
> certificates:0007_auto__add_revokedcertificate | |
DEBUG:south:execute "CREATE TABLE "certificates_revokedcertificate" ("id" integer NOT NULL PRIMARY KEY, "explanation" text NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "certificate_id" varchar(32) NULL, "graded_certificate_id" varchar(32) NULL, "download_url" varchar(128) NULL, "graded_download_url" varchar(128) NULL, "grade" varchar(5) NULL, "enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "certificates_revokedcertificate" ("id" integer NOT NULL PRIMARY KEY, "explanation" text NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "certificate_id" varchar(32) NULL, "graded_certificate_id" varchar(32) NULL, "download_url" varchar(128) NULL, "graded_download_url" varchar(128) NULL, "grade" varchar(5) NULL, "enabled" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_revokedcertificate_fbfc09f1" ON "certificates_revokedcertificate" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_revokedcertificate_fbfc09f1" ON "certificates_revokedcertificate" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0007_auto__add_revokedcertificate ); args=('certificates', '0007_auto__add_revokedcertificate') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0007_auto__add_revokedcertificate, 2015-05-14 20:31:03.225762); args=['certificates', '0007_auto__add_revokedcertificate', u'2015-05-14 20:31:03.225762'] | |
> certificates:0008_auto__del_revokedcertificate__del_field_generatedcertificate_name__add | |
DEBUG:south:execute "DROP TABLE "certificates_revokedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.002) DROP TABLE "certificates_revokedcertificate";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", "course_id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", 'False' as "course_id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", "course_id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "graded_certificate_id", "id", 'False' as "course_id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5), "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "course_id", "graded_certificate_id", "id", "key") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "course_id", "graded_certificate_id", "id", 'False' as "key" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "course_id", "graded_certificate_id", "id", "key") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "course_id", "graded_certificate_id", "id", 'False' as "key" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32), "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128), "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128), "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "graded_download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "graded_download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0008_auto__del_revokedcertificate__del_field_generatedcertificate_name__add ); args=('certificates', '0008_auto__del_revokedcertificate__del_field_generatedcertificate_name__add') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0008_auto__del_revokedcertificate__del_field_generatedcertificate_name__add, 2015-05-14 20:31:03.307815); args=['certificates', '0008_auto__del_revokedcertificate__del_field_generatedcertificate_name__add', u'2015-05-14 20:31:03.307815'] | |
> certificates:0009_auto__del_field_generatedcertificate_graded_download_url__del_field_ge | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "graded_certificate_id" varchar(32) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "graded_certificate_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "graded_certificate_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "enabled" bool NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id", "distinction") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id", 'False' as "distinction" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id", "distinction") SELECT "user_id", "grade", "certificate_id", "enabled", "download_url", "key", "course_id", "id", 'False' as "distinction" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0009_auto__del_field_generatedcertificate_graded_download_url__del_field_ge ); args=('certificates', '0009_auto__del_field_generatedcertificate_graded_download_url__del_field_ge') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0009_auto__del_field_generatedcertificate_graded_download_url__del_field_ge, 2015-05-14 20:31:03.346087); args=['certificates', '0009_auto__del_field_generatedcertificate_graded_download_url__del_field_ge', u'2015-05-14 20:31:03.346087'] | |
> certificates:0010_auto__del_field_generatedcertificate_enabled__add_field_generatedcerti | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id") SELECT "user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id") SELECT "user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "certificate_id" varchar(32) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id", "status") SELECT "user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id", 'unavailable' as "status" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id", "status") SELECT "user_id", "grade", "certificate_id", "download_url", "key", "course_id", "distinction", "id", 'unavailable' as "status" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0010_auto__del_field_generatedcertificate_enabled__add_field_generatedcerti ); args=('certificates', '0010_auto__del_field_generatedcertificate_enabled__add_field_generatedcerti') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0010_auto__del_field_generatedcertificate_enabled__add_field_generatedcerti, 2015-05-14 20:31:03.380642); args=['certificates', '0010_auto__del_field_generatedcertificate_enabled__add_field_generatedcerti', u'2015-05-14 20:31:03.380642'] | |
> certificates:0011_auto__del_field_generatedcertificate_certificate_id__add_field_generat | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id") SELECT "status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id") SELECT "status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id", "verify_uuid") SELECT "status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id", '' as "verify_uuid" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id", "verify_uuid") SELECT "status", "user_id", "grade", "download_url", "key", "course_id", "distinction", "id", '' as "verify_uuid" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "verify_uuid", "key", "course_id", "distinction", "id", "download_uuid") SELECT "status", "user_id", "grade", "download_url", "verify_uuid", "key", "course_id", "distinction", "id", '' as "download_uuid" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "verify_uuid", "key", "course_id", "distinction", "id", "download_uuid") SELECT "status", "user_id", "grade", "download_url", "verify_uuid", "key", "course_id", "distinction", "id", '' as "download_uuid" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0011_auto__del_field_generatedcertificate_certificate_id__add_field_generat ); args=('certificates', '0011_auto__del_field_generatedcertificate_certificate_id__add_field_generat') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0011_auto__del_field_generatedcertificate_certificate_id__add_field_generat, 2015-05-14 20:31:03.425628); args=['certificates', '0011_auto__del_field_generatedcertificate_certificate_id__add_field_generat', u'2015-05-14 20:31:03.425628'] | |
> certificates:0012_auto__add_field_generatedcertificate_name__add_field_generatedcertific | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "course_id", "download_uuid", "key", "verify_uuid", "distinction", "id", "name") SELECT "status", "user_id", "grade", "download_url", "course_id", "download_uuid", "key", "verify_uuid", "distinction", "id", '' as "name" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "grade", "download_url", "course_id", "download_uuid", "key", "verify_uuid", "distinction", "id", "name") SELECT "status", "user_id", "grade", "download_url", "course_id", "download_uuid", "key", "verify_uuid", "distinction", "id", '' as "name" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "course_id", "distinction", "id", "created_date") SELECT "status", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "course_id", "distinction", "id", '2015-05-14 20:31:03.447910' as "created_date" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "course_id", "distinction", "id", "created_date") SELECT "status", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "course_id", "distinction", "id", '2015-05-14 20:31:03.447910' as "created_date" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "id", "modified_date") SELECT "status", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "id", '2015-05-14 20:31:03.458336' as "modified_date" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "id", "modified_date") SELECT "status", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "id", '2015-05-14 20:31:03.458336' as "modified_date" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0012_auto__add_field_generatedcertificate_name__add_field_generatedcertific ); args=('certificates', '0012_auto__add_field_generatedcertificate_name__add_field_generatedcertific') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0012_auto__add_field_generatedcertificate_name__add_field_generatedcertific, 2015-05-14 20:31:03.471313); args=['certificates', '0012_auto__add_field_generatedcertificate_name__add_field_generatedcertific', u'2015-05-14 20:31:03.471313'] | |
> certificates:0013_auto__add_field_generatedcertificate_error_reason | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "created_date", "course_id", "distinction", "id", "error_reason") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "created_date", "course_id", "distinction", "id", '' as "error_reason" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "created_date", "course_id", "distinction", "id", "error_reason") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "key", "created_date", "course_id", "distinction", "id", '' as "error_reason" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0013_auto__add_field_generatedcertificate_error_reason ); args=('certificates', '0013_auto__add_field_generatedcertificate_error_reason') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0013_auto__add_field_generatedcertificate_error_reason, 2015-05-14 20:31:03.494392); args=['certificates', '0013_auto__add_field_generatedcertificate_error_reason', u'2015-05-14 20:31:03.494392'] | |
> certificates:0014_adding_whitelist | |
DEBUG:south:execute "CREATE TABLE "certificates_certificatewhitelist" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "whitelist" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_certificatewhitelist" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "whitelist" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_certificatewhitelist_fbfc09f1" ON "certificates_certificatewhitelist" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_certificatewhitelist_fbfc09f1" ON "certificates_certificatewhitelist" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0014_adding_whitelist ); args=('certificates', '0014_adding_whitelist') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0014_adding_whitelist, 2015-05-14 20:31:03.516146); args=['certificates', '0014_adding_whitelist', u'2015-05-14 20:31:03.516146'] | |
> certificates:0015_adding_mode_for_verified_certs | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "mode" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "verify_uuid" varchar(32) NOT NULL, "download_uuid" varchar(32) NOT NULL, "mode" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "error_reason", "id", "mode") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "error_reason", "id", 'honor' as "mode" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "error_reason", "id", "mode") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "course_id", "download_uuid", "key", "created_date", "verify_uuid", "distinction", "error_reason", "id", 'honor' as "mode" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0015_adding_mode_for_verified_certs ); args=('certificates', '0015_adding_mode_for_verified_certs') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0015_adding_mode_for_verified_certs, 2015-05-14 20:31:03.547420); args=['certificates', '0015_adding_mode_for_verified_certs', u'2015-05-14 20:31:03.547420'] | |
> certificates:0016_change_course_key_fields | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_generatedcertificate_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "mode" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_generatedcertificate" ("status" varchar(32) NOT NULL, "modified_date" datetime NOT NULL, "user_id" integer NOT NULL, "name" varchar(255) NOT NULL, "grade" varchar(5) NOT NULL, "download_url" varchar(128) NOT NULL, "course_id" varchar(255) NOT NULL, "download_uuid" varchar(32) NOT NULL, "mode" varchar(32) NOT NULL, "key" varchar(32) NOT NULL, "created_date" datetime NOT NULL, "verify_uuid" varchar(32) NOT NULL, "distinction" bool NOT NULL, "error_reason" varchar(512) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_generatedcertificate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_generatedcertificate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "mode", "key", "created_date", "course_id", "distinction", "error_reason", "id") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "mode", "key", "created_date", "course_id", "distinction", "error_reason", "id" FROM "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_generatedcertificate" ("status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "mode", "key", "created_date", "course_id", "distinction", "error_reason", "id") SELECT "status", "modified_date", "user_id", "name", "grade", "download_url", "verify_uuid", "download_uuid", "mode", "key", "created_date", "course_id", "distinction", "error_reason", "id" FROM "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_generatedcertificate" RENAME TO "certificates_generatedcertificate";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "certificates_generatedcertificate_course_id__user_id" ON "certificates_generatedcertificate"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_generatedcertificate_fbfc09f1" ON "certificates_generatedcertificate"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_certificatewhitelist"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_certificatewhitelist"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("certificates_certificatewhitelist"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("certificates_certificatewhitelist_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_certificatewhitelist"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_certificates_certificatewhitelist" ("course_id" varchar(255) NOT NULL, "whitelist" bool NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_certificates_certificatewhitelist" ("course_id" varchar(255) NOT NULL, "whitelist" bool NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("certificates_certificatewhitelist"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_certificates_certificatewhitelist"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_certificates_certificatewhitelist" ("id", "user_id", "course_id", "whitelist") SELECT "id", "user_id", "course_id", "whitelist" FROM "certificates_certificatewhitelist";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_certificates_certificatewhitelist" ("id", "user_id", "course_id", "whitelist") SELECT "id", "user_id", "course_id", "whitelist" FROM "certificates_certificatewhitelist";; args=[] | |
DEBUG:south:execute "DROP TABLE "certificates_certificatewhitelist";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "certificates_certificatewhitelist";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_certificates_certificatewhitelist" RENAME TO "certificates_certificatewhitelist";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_certificates_certificatewhitelist" RENAME TO "certificates_certificatewhitelist";; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_certificatewhitelist_fbfc09f1" ON "certificates_certificatewhitelist"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_certificatewhitelist_fbfc09f1" ON "certificates_certificatewhitelist"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0016_change_course_key_fields ); args=('certificates', '0016_change_course_key_fields') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0016_change_course_key_fields, 2015-05-14 20:31:03.584966); args=['certificates', '0016_change_course_key_fields', u'2015-05-14 20:31:03.584966'] | |
> certificates:0017_auto__add_certificategenerationconfiguration | |
DEBUG:south:execute "CREATE TABLE "certificates_certificategenerationconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_certificategenerationconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_certificategenerationconfiguration_16905482" ON "certificates_certificategenerationconfiguration" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_certificategenerationconfiguration_16905482" ON "certificates_certificategenerationconfiguration" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0017_auto__add_certificategenerationconfiguration ); args=('certificates', '0017_auto__add_certificategenerationconfiguration') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0017_auto__add_certificategenerationconfiguration, 2015-05-14 20:31:03.604528); args=['certificates', '0017_auto__add_certificategenerationconfiguration', u'2015-05-14 20:31:03.604528'] | |
> certificates:0018_add_example_cert_models | |
DEBUG:south:execute "CREATE TABLE "certificates_certificategenerationcoursesetting" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_key" varchar(255) NOT NULL, "enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_certificategenerationcoursesetting" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_key" varchar(255) NOT NULL, "enabled" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "certificates_examplecertificate" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "example_cert_set_id" integer NOT NULL, "description" varchar(255) NOT NULL, "uuid" varchar(255) NOT NULL UNIQUE, "access_key" varchar(255) NOT NULL, "full_name" varchar(255) NOT NULL, "template" varchar(255) NOT NULL, "status" varchar(255) NOT NULL, "error_reason" text NULL, "download_url" varchar(255) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_examplecertificate" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "example_cert_set_id" integer NOT NULL, "description" varchar(255) NOT NULL, "uuid" varchar(255) NOT NULL UNIQUE, "access_key" varchar(255) NOT NULL, "full_name" varchar(255) NOT NULL, "template" varchar(255) NOT NULL, "status" varchar(255) NOT NULL, "error_reason" text NULL, "download_url" varchar(255) NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_examplecertificate_uuid_183b9188451b331e" ON "certificates_examplecertificate" ("uuid","access_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_examplecertificate_uuid_183b9188451b331e" ON "certificates_examplecertificate" ("uuid","access_key");; args=[] | |
DEBUG:south:execute "CREATE TABLE "certificates_examplecertificateset" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_key" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_examplecertificateset" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_key" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_certificategenerationcoursesetting_b4b47e7a" ON "certificates_certificategenerationcoursesetting" ("course_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_certificategenerationcoursesetting_b4b47e7a" ON "certificates_certificategenerationcoursesetting" ("course_key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_examplecertificate_3b9264a" ON "certificates_examplecertificate" ("example_cert_set_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_examplecertificate_3b9264a" ON "certificates_examplecertificate" ("example_cert_set_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_examplecertificate_752852c3" ON "certificates_examplecertificate" ("access_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_examplecertificate_752852c3" ON "certificates_examplecertificate" ("access_key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_examplecertificateset_b4b47e7a" ON "certificates_examplecertificateset" ("course_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_examplecertificateset_b4b47e7a" ON "certificates_examplecertificateset" ("course_key");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0018_add_example_cert_models ); args=('certificates', '0018_add_example_cert_models') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0018_add_example_cert_models, 2015-05-14 20:31:03.646924); args=['certificates', '0018_add_example_cert_models', u'2015-05-14 20:31:03.646924'] | |
> certificates:0019_auto__add_certificatehtmlviewconfiguration | |
DEBUG:south:execute "CREATE TABLE "certificates_certificatehtmlviewconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "configuration" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "certificates_certificatehtmlviewconfiguration" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "configuration" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "certificates_certificatehtmlviewconfiguration_16905482" ON "certificates_certificatehtmlviewconfiguration" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "certificates_certificatehtmlviewconfiguration_16905482" ON "certificates_certificatehtmlviewconfiguration" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0019_auto__add_certificatehtmlviewconfiguration ); args=('certificates', '0019_auto__add_certificatehtmlviewconfiguration') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0019_auto__add_certificatehtmlviewconfiguration, 2015-05-14 20:31:03.670720); args=['certificates', '0019_auto__add_certificatehtmlviewconfiguration', u'2015-05-14 20:31:03.670720'] | |
> certificates:0020_certificatehtmlviewconfiguration_data | |
- Migration 'certificates:0020_certificatehtmlviewconfiguration_data' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) INSERT INTO "certificates_certificatehtmlviewconfiguration" ("changed_by_id", "enabled", "change_date", "configuration") VALUES (None, False, 2015-05-14 20:31:03.693606, { | |
{ | |
"default": { | |
"accomplishment_class_append": "accomplishment-certificate", | |
"platform_name": "edX", | |
"company_privacy_url": "http://www.edx.org/edx-privacy-policy", | |
"company_tos_url": "http://www.edx.org/edx-terms-service", | |
"company_verified_certificate_url": "http://www.edx.org/verified-certificate", | |
"document_stylesheet_url_application": "/static/certificates/sass/main-ltr.css", | |
"logo_src": "/static/certificates/images/logo-edx.svg", | |
"logo_url": "http://www.edx.org" | |
}, | |
"honor": { | |
"certificate_type": "Honor Code", | |
"document_body_class_append": "is-honorcode" | |
}, | |
"verified": { | |
"certificate_type": "Verified", | |
"document_body_class_append": "is-idverified" | |
}, | |
"xseries": { | |
"certificate_type": "XSeries", | |
"document_body_class_append": "is-xseries" | |
} | |
} | |
}); args=[None, False, u'2015-05-14 20:31:03.693606', '{\n {\n "default": {\n "accomplishment_class_append": "accomplishment-certificate",\n "platform_name": "edX",\n "company_privacy_url": "http://www.edx.org/edx-privacy-policy",\n "company_tos_url": "http://www.edx.org/edx-terms-service",\n "company_verified_certificate_url": "http://www.edx.org/verified-certificate",\n "document_stylesheet_url_application": "/static/certificates/sass/main-ltr.css",\n "logo_src": "/static/certificates/images/logo-edx.svg",\n "logo_url": "http://www.edx.org"\n },\n "honor": {\n "certificate_type": "Honor Code",\n "document_body_class_append": "is-honorcode"\n },\n "verified": {\n "certificate_type": "Verified",\n "document_body_class_append": "is-idverified"\n },\n "xseries": {\n "certificate_type": "XSeries",\n "document_body_class_append": "is-xseries"\n }\n}\n }'] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = certificates AND "south_migrationhistory"."migration" = 0020_certificatehtmlviewconfiguration_data ); args=('certificates', '0020_certificatehtmlviewconfiguration_data') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (certificates, 0020_certificatehtmlviewconfiguration_data, 2015-05-14 20:31:03.696918); args=['certificates', '0020_certificatehtmlviewconfiguration_data', u'2015-05-14 20:31:03.696918'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = certificatewhitelist AND "django_content_type"."app_label" = certificates ); args=('certificatewhitelist', 'certificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (certificate whitelist, certificates, certificatewhitelist); args=[u'certificate whitelist', 'certificates', 'certificatewhitelist'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = generatedcertificate AND "django_content_type"."app_label" = certificates ); args=('generatedcertificate', 'certificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (generated certificate, certificates, generatedcertificate); args=[u'generated certificate', 'certificates', 'generatedcertificate'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = examplecertificateset AND "django_content_type"."app_label" = certificates ); args=('examplecertificateset', 'certificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (example certificate set, certificates, examplecertificateset); args=[u'example certificate set', 'certificates', 'examplecertificateset'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = examplecertificate AND "django_content_type"."app_label" = certificates ); args=('examplecertificate', 'certificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (example certificate, certificates, examplecertificate); args=[u'example certificate', 'certificates', 'examplecertificate'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = certificategenerationcoursesetting AND "django_content_type"."app_label" = certificates ); args=('certificategenerationcoursesetting', 'certificates') | |
DEBUG:django.db.backends:(0.001) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (certificate generation course setting, certificates, certificategenerationcoursesetting); args=[u'certificate generation course setting', 'certificates', 'certificategenerationcoursesetting'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = certificategenerationconfiguration AND "django_content_type"."app_label" = certificates ); args=('certificategenerationconfiguration', 'certificates') | |
DEBUG:django.db.backends:(0.001) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (certificate generation configuration, certificates, certificategenerationconfiguration); args=[u'certificate generation configuration', 'certificates', 'certificategenerationconfiguration'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = certificatehtmlviewconfiguration AND "django_content_type"."app_label" = certificates ); args=('certificatehtmlviewconfiguration', 'certificates') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (certificate html view configuration, certificates, certificatehtmlviewconfiguration); args=[u'certificate html view configuration', 'certificates', 'certificatehtmlviewconfiguration'] | |
DEBUG:django.db.backends:(0.000) 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 (51, 52, 53, 54, 55, 56, 57) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(51, 52, 53, 54, 55, 56, 57) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add certificate whitelist AS "name", 51 AS "content_type_id", add_certificatewhitelist AS "codename" UNION ALL SELECT Can change certificate whitelist, 51, change_certificatewhitelist UNION ALL SELECT Can delete certificate whitelist, 51, delete_certificatewhitelist UNION ALL SELECT Can add generated certificate, 52, add_generatedcertificate UNION ALL SELECT Can change generated certificate, 52, change_generatedcertificate UNION ALL SELECT Can delete generated certificate, 52, delete_generatedcertificate UNION ALL SELECT Can add example certificate set, 53, add_examplecertificateset UNION ALL SELECT Can change example certificate set, 53, change_examplecertificateset UNION ALL SELECT Can delete example certificate set, 53, delete_examplecertificateset UNION ALL SELECT Can add example certificate, 54, add_examplecertificate UNION ALL SELECT Can change example certificate, 54, change_examplecertificate UNION ALL SELECT Can delete example certificate, 54, delete_examplecertificate UNION ALL SELECT Can add certificate generation course setting, 55, add_certificategenerationcoursesetting UNION ALL SELECT Can change certificate generation course setting, 55, change_certificategenerationcoursesetting UNION ALL SELECT Can delete certificate generation course setting, 55, delete_certificategenerationcoursesetting UNION ALL SELECT Can add certificate generation configuration, 56, add_certificategenerationconfiguration UNION ALL SELECT Can change certificate generation configuration, 56, change_certificategenerationconfiguration UNION ALL SELECT Can delete certificate generation configuration, 56, delete_certificategenerationconfiguration UNION ALL SELECT Can add certificate html view configuration, 57, add_certificatehtmlviewconfiguration UNION ALL SELECT Can change certificate html view configuration, 57, change_certificatehtmlviewconfiguration UNION ALL SELECT Can delete certificate html view configuration, 57, delete_certificatehtmlviewconfiguration; args=(u'Can add certificate whitelist', 51, u'add_certificatewhitelist', u'Can change certificate whitelist', 51, u'change_certificatewhitelist', u'Can delete certificate whitelist', 51, u'delete_certificatewhitelist', u'Can add generated certificate', 52, u'add_generatedcertificate', u'Can change generated certificate', 52, u'change_generatedcertificate', u'Can delete generated certificate', 52, u'delete_generatedcertificate', u'Can add example certificate set', 53, u'add_examplecertificateset', u'Can change example certificate set', 53, u'change_examplecertificateset', u'Can delete example certificate set', 53, u'delete_examplecertificateset', u'Can add example certificate', 54, u'add_examplecertificate', u'Can change example certificate', 54, u'change_examplecertificate', u'Can delete example certificate', 54, u'delete_examplecertificate', u'Can add certificate generation course setting', 55, u'add_certificategenerationcoursesetting', u'Can change certificate generation course setting', 55, u'change_certificategenerationcoursesetting', u'Can delete certificate generation course setting', 55, u'delete_certificategenerationcoursesetting', u'Can add certificate generation configuration', 56, u'add_certificategenerationconfiguration', u'Can change certificate generation configuration', 56, u'change_certificategenerationconfiguration', u'Can delete certificate generation configuration', 56, u'delete_certificategenerationconfiguration', u'Can add certificate html view configuration', 57, u'add_certificatehtmlviewconfiguration', u'Can change certificate html view configuration', 57, u'change_certificatehtmlviewconfiguration', u'Can delete certificate html view configuration', 57, u'delete_certificatehtmlviewconfiguration') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = certificates ORDER BY "django_content_type"."name" ASC; args=('certificates',) | |
- Loading initial data for certificates. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for instructor_task: | |
- Migrating forwards to 0002_add_subtask_field. | |
> instructor_task:0001_initial | |
DEBUG:south:execute "CREATE TABLE "instructor_task_instructortask" ("id" integer NOT NULL PRIMARY KEY, "task_type" varchar(50) NOT NULL, "course_id" varchar(255) NOT NULL, "task_key" varchar(255) NOT NULL, "task_input" varchar(255) NOT NULL, "task_id" varchar(255) NOT NULL, "task_state" varchar(50) NULL, "task_output" varchar(1024) NULL, "requester_id" integer NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "instructor_task_instructortask" ("id" integer NOT NULL PRIMARY KEY, "task_type" varchar(50) NOT NULL, "course_id" varchar(255) NOT NULL, "task_key" varchar(255) NOT NULL, "task_input" varchar(255) NOT NULL, "task_id" varchar(255) NOT NULL, "task_state" varchar(50) NULL, "task_output" varchar(1024) NULL, "requester_id" integer NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_8ae638b4" ON "instructor_task_instructortask" ("task_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_8ae638b4" ON "instructor_task_instructortask" ("task_type");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_ff48d8e5" ON "instructor_task_instructortask" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_ff48d8e5" ON "instructor_task_instructortask" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_cfc55170" ON "instructor_task_instructortask" ("task_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_cfc55170" ON "instructor_task_instructortask" ("task_key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_c00fe455" ON "instructor_task_instructortask" ("task_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_c00fe455" ON "instructor_task_instructortask" ("task_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_731e67a4" ON "instructor_task_instructortask" ("task_state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_731e67a4" ON "instructor_task_instructortask" ("task_state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_b8ca8b9f" ON "instructor_task_instructortask" ("requester_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_b8ca8b9f" ON "instructor_task_instructortask" ("requester_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = instructor_task AND "south_migrationhistory"."migration" = 0001_initial ); args=('instructor_task', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (instructor_task, 0001_initial, 2015-05-14 20:31:03.994090); args=['instructor_task', '0001_initial', u'2015-05-14 20:31:03.994090'] | |
> instructor_task:0002_add_subtask_field | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("instructor_task_instructortask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("instructor_task_instructortask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("instructor_task_instructortask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_b8ca8b9f"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_731e67a4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_c00fe455"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_cfc55170"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("instructor_task_instructortask_8ae638b4"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("instructor_task_instructortask"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_instructor_task_instructortask" ("updated" datetime NOT NULL, "task_type" varchar(50) NOT NULL, "subtasks" text NOT NULL, "task_output" varchar(1024), "task_id" varchar(255) NOT NULL, "created" datetime, "task_input" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "requester_id" integer NOT NULL, "task_state" varchar(50), "id" integer PRIMARY KEY, "task_key" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_instructor_task_instructortask" ("updated" datetime NOT NULL, "task_type" varchar(50) NOT NULL, "subtasks" text NOT NULL, "task_output" varchar(1024), "task_id" varchar(255) NOT NULL, "created" datetime, "task_input" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "requester_id" integer NOT NULL, "task_state" varchar(50), "id" integer PRIMARY KEY, "task_key" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("instructor_task_instructortask"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_instructor_task_instructortask"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_instructor_task_instructortask" ("id", "task_type", "course_id", "task_key", "task_input", "task_id", "task_state", "task_output", "requester_id", "created", "updated", "subtasks") SELECT "id", "task_type", "course_id", "task_key", "task_input", "task_id", "task_state", "task_output", "requester_id", "created", "updated", '' as "subtasks" FROM "instructor_task_instructortask";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_instructor_task_instructortask" ("id", "task_type", "course_id", "task_key", "task_input", "task_id", "task_state", "task_output", "requester_id", "created", "updated", "subtasks") SELECT "id", "task_type", "course_id", "task_key", "task_input", "task_id", "task_state", "task_output", "requester_id", "created", "updated", '' as "subtasks" FROM "instructor_task_instructortask";; args=[] | |
DEBUG:south:execute "DROP TABLE "instructor_task_instructortask";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "instructor_task_instructortask";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_instructor_task_instructortask" RENAME TO "instructor_task_instructortask";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_instructor_task_instructortask" RENAME TO "instructor_task_instructortask";; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_b8ca8b9f" ON "instructor_task_instructortask"("requester_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_b8ca8b9f" ON "instructor_task_instructortask"("requester_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_731e67a4" ON "instructor_task_instructortask"("task_state");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_731e67a4" ON "instructor_task_instructortask"("task_state");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_c00fe455" ON "instructor_task_instructortask"("task_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_c00fe455" ON "instructor_task_instructortask"("task_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_cfc55170" ON "instructor_task_instructortask"("task_key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_cfc55170" ON "instructor_task_instructortask"("task_key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_ff48d8e5" ON "instructor_task_instructortask"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_ff48d8e5" ON "instructor_task_instructortask"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "instructor_task_instructortask_8ae638b4" ON "instructor_task_instructortask"("task_type");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "instructor_task_instructortask_8ae638b4" ON "instructor_task_instructortask"("task_type");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = instructor_task AND "south_migrationhistory"."migration" = 0002_add_subtask_field ); args=('instructor_task', '0002_add_subtask_field') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (instructor_task, 0002_add_subtask_field, 2015-05-14 20:31:04.025994); args=['instructor_task', '0002_add_subtask_field', u'2015-05-14 20:31:04.025994'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = instructortask AND "django_content_type"."app_label" = instructor_task ); args=('instructortask', 'instructor_task') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (instructor task, instructor_task, instructortask); args=[u'instructor task', 'instructor_task', 'instructortask'] | |
DEBUG:django.db.backends:(0.000) 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 (58) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(58,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add instructor task AS "name", 58 AS "content_type_id", add_instructortask AS "codename" UNION ALL SELECT Can change instructor task, 58, change_instructortask UNION ALL SELECT Can delete instructor task, 58, delete_instructortask; args=(u'Can add instructor task', 58, u'add_instructortask', u'Can change instructor task', 58, u'change_instructortask', u'Can delete instructor task', 58, u'delete_instructortask') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = instructor_task ORDER BY "django_content_type"."name" ASC; args=('instructor_task',) | |
- Loading initial data for instructor_task. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for licenses: | |
- Migrating forwards to 0001_initial. | |
> licenses:0001_initial | |
DEBUG:south:execute "CREATE TABLE "licenses_coursesoftware" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "full_name" varchar(255) NOT NULL, "url" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "licenses_coursesoftware" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "full_name" varchar(255) NOT NULL, "url" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "licenses_userlicense" ("id" integer NOT NULL PRIMARY KEY, "software_id" integer NOT NULL, "user_id" integer NULL, "serial" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "licenses_userlicense" ("id" integer NOT NULL PRIMARY KEY, "software_id" integer NOT NULL, "user_id" integer NULL, "serial" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "licenses_userlicense_4c6ed3c1" ON "licenses_userlicense" ("software_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "licenses_userlicense_4c6ed3c1" ON "licenses_userlicense" ("software_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "licenses_userlicense_fbfc09f1" ON "licenses_userlicense" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "licenses_userlicense_fbfc09f1" ON "licenses_userlicense" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = licenses AND "south_migrationhistory"."migration" = 0001_initial ); args=('licenses', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (licenses, 0001_initial, 2015-05-14 20:31:04.472321); args=['licenses', '0001_initial', u'2015-05-14 20:31:04.472321'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = coursesoftware AND "django_content_type"."app_label" = licenses ); args=('coursesoftware', 'licenses') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course software, licenses, coursesoftware); args=[u'course software', 'licenses', 'coursesoftware'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = userlicense AND "django_content_type"."app_label" = licenses ); args=('userlicense', 'licenses') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user license, licenses, userlicense); args=[u'user license', 'licenses', 'userlicense'] | |
DEBUG:django.db.backends:(0.000) 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 (59, 60) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(59, 60) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add course software AS "name", 59 AS "content_type_id", add_coursesoftware AS "codename" UNION ALL SELECT Can change course software, 59, change_coursesoftware UNION ALL SELECT Can delete course software, 59, delete_coursesoftware UNION ALL SELECT Can add user license, 60, add_userlicense UNION ALL SELECT Can change user license, 60, change_userlicense UNION ALL SELECT Can delete user license, 60, delete_userlicense; args=(u'Can add course software', 59, u'add_coursesoftware', u'Can change course software', 59, u'change_coursesoftware', u'Can delete course software', 59, u'delete_coursesoftware', u'Can add user license', 60, u'add_userlicense', u'Can change user license', 60, u'change_userlicense', u'Can delete user license', 60, u'delete_userlicense') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = licenses ORDER BY "django_content_type"."name" ASC; args=('licenses',) | |
- Loading initial data for licenses. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for course_groups: | |
- Migrating forwards to 0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_. | |
> course_groups:0001_initial | |
DEBUG:django.db.backends:(0.000) | |
SELECT name FROM sqlite_master | |
WHERE type='table' AND NOT name='sqlite_sequence' | |
ORDER BY name; args=() | |
DEBUG:django.db.backends:(0.000) | |
SELECT name FROM sqlite_master | |
WHERE type='table' AND NOT name='sqlite_sequence' | |
ORDER BY name; args=() | |
DEBUG:south:execute "CREATE TABLE "course_groups_courseusergroup" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "group_type" varchar(20) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "course_groups_courseusergroup" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "group_type" varchar(20) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "course_groups_courseusergroup_name__course_id" ON "course_groups_courseusergroup"("name", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "course_groups_courseusergroup_name__course_id" ON "course_groups_courseusergroup"("name", "course_id");; args=[] | |
DEBUG:south:execute "CREATE TABLE "course_groups_courseusergroup_users" ("id" integer NOT NULL PRIMARY KEY, "courseusergroup_id" integer NOT NULL, "user_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "course_groups_courseusergroup_users" ("id" integer NOT NULL PRIMARY KEY, "courseusergroup_id" integer NOT NULL, "user_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "course_groups_courseusergroup_users_courseusergroup_id__user_id" ON "course_groups_courseusergroup_users"("courseusergroup_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "course_groups_courseusergroup_users_courseusergroup_id__user_id" ON "course_groups_courseusergroup_users"("courseusergroup_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "course_groups_courseusergroup_ff48d8e5" ON "course_groups_courseusergroup" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "course_groups_courseusergroup_ff48d8e5" ON "course_groups_courseusergroup" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "course_groups_courseusergroup_users_caee1c64" ON "course_groups_courseusergroup_users" ("courseusergroup_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "course_groups_courseusergroup_users_caee1c64" ON "course_groups_courseusergroup_users" ("courseusergroup_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "course_groups_courseusergroup_users_fbfc09f1" ON "course_groups_courseusergroup_users" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "course_groups_courseusergroup_users_fbfc09f1" ON "course_groups_courseusergroup_users" ("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = course_groups AND "south_migrationhistory"."migration" = 0001_initial ); args=('course_groups', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (course_groups, 0001_initial, 2015-05-14 20:31:04.732232); args=['course_groups', '0001_initial', u'2015-05-14 20:31:04.732232'] | |
> course_groups:0002_add_model_CourseUserGroupPartitionGroup | |
DEBUG:south:execute "CREATE TABLE "course_groups_courseusergrouppartitiongroup" ("id" integer NOT NULL PRIMARY KEY, "course_user_group_id" integer NOT NULL UNIQUE, "partition_id" integer NOT NULL, "group_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "course_groups_courseusergrouppartitiongroup" ("id" integer NOT NULL PRIMARY KEY, "course_user_group_id" integer NOT NULL UNIQUE, "partition_id" integer NOT NULL, "group_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = course_groups AND "south_migrationhistory"."migration" = 0002_add_model_CourseUserGroupPartitionGroup ); args=('course_groups', '0002_add_model_CourseUserGroupPartitionGroup') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (course_groups, 0002_add_model_CourseUserGroupPartitionGroup, 2015-05-14 20:31:04.753061); args=['course_groups', '0002_add_model_CourseUserGroupPartitionGroup', u'2015-05-14 20:31:04.753061'] | |
> course_groups:0003_auto__add_coursecohort__add_coursecohortssettings | |
DEBUG:south:execute "CREATE TABLE "course_groups_coursecohort" ("id" integer NOT NULL PRIMARY KEY, "course_user_group_id" integer NOT NULL UNIQUE, "assignment_type" varchar(20) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "course_groups_coursecohort" ("id" integer NOT NULL PRIMARY KEY, "course_user_group_id" integer NOT NULL UNIQUE, "assignment_type" varchar(20) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "course_groups_coursecohortssettings" ("id" integer NOT NULL PRIMARY KEY, "is_cohorted" bool NOT NULL, "course_id" varchar(255) NOT NULL UNIQUE, "cohorted_discussions" text NULL, "always_cohort_inline_discussions" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "course_groups_coursecohortssettings" ("id" integer NOT NULL PRIMARY KEY, "is_cohorted" bool NOT NULL, "course_id" varchar(255) NOT NULL UNIQUE, "cohorted_discussions" text NULL, "always_cohort_inline_discussions" bool NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = course_groups AND "south_migrationhistory"."migration" = 0003_auto__add_coursecohort__add_coursecohortssettings ); args=('course_groups', '0003_auto__add_coursecohort__add_coursecohortssettings') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (course_groups, 0003_auto__add_coursecohort__add_coursecohortssettings, 2015-05-14 20:31:04.775607); args=['course_groups', '0003_auto__add_coursecohort__add_coursecohortssettings', u'2015-05-14 20:31:04.775607'] | |
> course_groups:0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_ | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = course_groups AND "south_migrationhistory"."migration" = 0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_ ); args=('course_groups', '0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (course_groups, 0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_, 2015-05-14 20:31:04.792475); args=['course_groups', '0004_auto__del_field_coursecohortssettings_cohorted_discussions__add_field_', u'2015-05-14 20:31:04.792475'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseusergroup AND "django_content_type"."app_label" = course_groups ); args=('courseusergroup', 'course_groups') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course user group, course_groups, courseusergroup); args=[u'course user group', 'course_groups', 'courseusergroup'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseusergrouppartitiongroup AND "django_content_type"."app_label" = course_groups ); args=('courseusergrouppartitiongroup', 'course_groups') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course user group partition group, course_groups, courseusergrouppartitiongroup); args=[u'course user group partition group', 'course_groups', 'courseusergrouppartitiongroup'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = coursecohortssettings AND "django_content_type"."app_label" = course_groups ); args=('coursecohortssettings', 'course_groups') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course cohorts settings, course_groups, coursecohortssettings); args=[u'course cohorts settings', 'course_groups', 'coursecohortssettings'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = coursecohort AND "django_content_type"."app_label" = course_groups ); args=('coursecohort', 'course_groups') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course cohort, course_groups, coursecohort); args=[u'course cohort', 'course_groups', 'coursecohort'] | |
DEBUG:django.db.backends:(0.000) 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 (64, 61, 62, 63) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(64, 61, 62, 63) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add course user group AS "name", 61 AS "content_type_id", add_courseusergroup AS "codename" UNION ALL SELECT Can change course user group, 61, change_courseusergroup UNION ALL SELECT Can delete course user group, 61, delete_courseusergroup UNION ALL SELECT Can add course user group partition group, 62, add_courseusergrouppartitiongroup UNION ALL SELECT Can change course user group partition group, 62, change_courseusergrouppartitiongroup UNION ALL SELECT Can delete course user group partition group, 62, delete_courseusergrouppartitiongroup UNION ALL SELECT Can add course cohorts settings, 63, add_coursecohortssettings UNION ALL SELECT Can change course cohorts settings, 63, change_coursecohortssettings UNION ALL SELECT Can delete course cohorts settings, 63, delete_coursecohortssettings UNION ALL SELECT Can add course cohort, 64, add_coursecohort UNION ALL SELECT Can change course cohort, 64, change_coursecohort UNION ALL SELECT Can delete course cohort, 64, delete_coursecohort; args=(u'Can add course user group', 61, u'add_courseusergroup', u'Can change course user group', 61, u'change_courseusergroup', u'Can delete course user group', 61, u'delete_courseusergroup', u'Can add course user group partition group', 62, u'add_courseusergrouppartitiongroup', u'Can change course user group partition group', 62, u'change_courseusergrouppartitiongroup', u'Can delete course user group partition group', 62, u'delete_courseusergrouppartitiongroup', u'Can add course cohorts settings', 63, u'add_coursecohortssettings', u'Can change course cohorts settings', 63, u'change_coursecohortssettings', u'Can delete course cohorts settings', 63, u'delete_coursecohortssettings', u'Can add course cohort', 64, u'add_coursecohort', u'Can change course cohort', 64, u'change_coursecohort', u'Can delete course cohort', 64, u'delete_coursecohort') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = course_groups ORDER BY "django_content_type"."name" ASC; args=('course_groups',) | |
- Loading initial data for course_groups. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for bulk_email: | |
- Migrating forwards to 0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_. | |
> bulk_email:0001_initial | |
DEBUG:south:execute "CREATE TABLE "bulk_email_courseemail" ("id" integer NOT NULL PRIMARY KEY, "sender_id" integer NULL, "hash" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL, "html_message" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "to" varchar(64) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "bulk_email_courseemail" ("id" integer NOT NULL PRIMARY KEY, "sender_id" integer NULL, "hash" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL, "html_message" text NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "course_id" varchar(255) NOT NULL, "to" varchar(64) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "bulk_email_optout" ("id" integer NOT NULL PRIMARY KEY, "email" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "bulk_email_optout" ("id" integer NOT NULL PRIMARY KEY, "email" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_optout_email__course_id" ON "bulk_email_optout"("email", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_optout_email__course_id" ON "bulk_email_optout"("email", "course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail" ("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail" ("sender_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail" ("hash");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail" ("hash");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout" ("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout" ("email");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout" ("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0001_initial ); args=('bulk_email', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0001_initial, 2015-05-14 20:31:05.280216); args=['bulk_email', '0001_initial', u'2015-05-14 20:31:05.280216'] | |
> bulk_email:0002_change_field_names | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "hash" varchar(128) NOT NULL, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "hash" varchar(128) NOT NULL, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("id", "sender_id", "hash", "subject", "html_message", "created", "modified", "course_id", "to_option") SELECT "id", "sender_id", "hash", "subject", "html_message", "created", "modified", "course_id", "to" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("id", "sender_id", "hash", "subject", "html_message", "created", "modified", "course_id", "to_option") SELECT "id", "sender_id", "hash", "subject", "html_message", "created", "modified", "course_id", "to" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("hash");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("hash");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "slug", "created", "sender_id", "modified", "to_option", "course_id", "id", "subject") SELECT "html_message", "hash", "created", "sender_id", "modified", "to_option", "course_id", "id", "subject" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "slug", "created", "sender_id", "modified", "to_option", "course_id", "id", "subject") SELECT "html_message", "hash", "created", "sender_id", "modified", "to_option", "course_id", "id", "subject" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "slug" varchar(128) NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text NULL, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "slug" varchar(128) NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text NULL, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "sender_id", "modified", "id", "to_option", "course_id", "slug", "subject") SELECT "html_message", "created", "sender_id", "modified", "id", "to_option", "course_id", "slug", "subject" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "sender_id", "modified", "id", "to_option", "course_id", "slug", "subject") SELECT "html_message", "created", "sender_id", "modified", "id", "to_option", "course_id", "slug", "subject" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0002_change_field_names ); args=('bulk_email', '0002_change_field_names') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0002_change_field_names, 2015-05-14 20:31:05.326552); args=['bulk_email', '0002_change_field_names', u'2015-05-14 20:31:05.326552'] | |
> bulk_email:0003_add_optout_user | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_3904588a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer NULL, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer NULL, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_optout"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_optout" ("id", "email", "course_id") SELECT "id", "email", "course_id" FROM "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_optout" ("id", "email", "course_id") SELECT "id", "email", "course_id" FROM "bulk_email_optout";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_optout";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout"("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout"("email");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_optout_email__course_id" ON "bulk_email_optout"("email", "course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_optout_email__course_id" ON "bulk_email_optout"("email", "course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_email__course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_3904588a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY, "email" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_optout"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id", "email") SELECT "course_id", "user_id", "id", "email" FROM "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id", "email") SELECT "course_id", "user_id", "id", "email" FROM "bulk_email_optout";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_optout";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout"("email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_3904588a" ON "bulk_email_optout"("email");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0003_add_optout_user ); args=('bulk_email', '0003_add_optout_user') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0003_add_optout_user, 2015-05-14 20:31:05.362852); args=['bulk_email', '0003_add_optout_user', u'2015-05-14 20:31:05.362852'] | |
> bulk_email:0004_migrate_optout_user | |
- Migration 'bulk_email:0004_migrate_optout_user' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) SELECT "bulk_email_optout"."course_id", "bulk_email_optout"."user_id", "bulk_email_optout"."email", "bulk_email_optout"."id" FROM "bulk_email_optout"; args=() | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0004_migrate_optout_user ); args=('bulk_email', '0004_migrate_optout_user') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0004_migrate_optout_user, 2015-05-14 20:31:05.378070); args=['bulk_email', '0004_migrate_optout_user', u'2015-05-14 20:31:05.378070'] | |
> bulk_email:0005_remove_optout_email | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_3904588a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_optout"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id") SELECT "course_id", "user_id", "id" FROM "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id") SELECT "course_id", "user_id", "id" FROM "bulk_email_optout";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_optout";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0005_remove_optout_email ); args=('bulk_email', '0005_remove_optout_email') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0005_remove_optout_email, 2015-05-14 20:31:05.401735); args=['bulk_email', '0005_remove_optout_email', u'2015-05-14 20:31:05.401735'] | |
> bulk_email:0006_add_course_email_template | |
DEBUG:south:execute "CREATE TABLE "bulk_email_courseemailtemplate" ("id" integer NOT NULL PRIMARY KEY, "html_template" text NULL, "plain_template" text NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "bulk_email_courseemailtemplate" ("id" integer NOT NULL PRIMARY KEY, "html_template" text NULL, "plain_template" text NULL); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0006_add_course_email_template ); args=('bulk_email', '0006_add_course_email_template') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0006_add_course_email_template, 2015-05-14 20:31:05.421280); args=['bulk_email', '0006_add_course_email_template', u'2015-05-14 20:31:05.421280'] | |
> bulk_email:0007_load_course_email_template | |
- Migration 'bulk_email:0007_load_course_email_template' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) SELECT (1) AS "a" FROM "bulk_email_courseemailtemplate" WHERE "bulk_email_courseemailtemplate"."id" = 1 LIMIT 1; args=(1,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "bulk_email_courseemailtemplate" ("id", "html_template", "plain_template", "name") SELECT 1 AS "id", <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright © 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{account_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html> AS "html_template", {course_title} | |
{{message_body}} | |
---- | |
Copyright 2013 edX, All rights reserved. | |
---- | |
Connect with edX: | |
Facebook (http://facebook.com/edxonline) | |
Twitter (http://twitter.com/edxonline) | |
Google+ (https://plus.google.com/108235383044095082735) | |
Meetup (http://www.meetup.com/edX-Communities/) | |
---- | |
This email was automatically sent from {platform_name}. | |
You are receiving this email at address {email} because you are enrolled in {course_title} | |
(URL: {course_url} ). | |
To stop receiving email like this, update your account settings at {account_settings_url}. | |
AS "plain_template", None AS "name"; args=(1, u"<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://opengraph.org/schema/'> <head><meta property='og:title' content='Update from {course_title}'/><meta property='fb:page_id' content='43929265776' /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <title>Update from {course_title}</title> </head> <body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' offset='0' style='margin: 0;padding: 0;background-color: #ffffff;'> <center> <table align='center' border='0' cellpadding='0' cellspacing='0' height='100%' width='100%' id='bodyTable' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;background-color: #ffffff;height: 100% !important;width: 100% !important;'> <tr> <td align='center' valign='top' id='bodyCell' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0;padding: 0;border-top: 0;height: 100% !important;width: 100% !important;'> <!-- BEGIN TEMPLATE // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN PREHEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templatePreheader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='preheaderContainer' style='padding-top: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='366' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-left: 18px;padding-bottom: 9px;padding-right: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END PREHEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN HEADER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateHeader' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='headerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnImageBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnImageBlockOuter'> <tr> <td valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;' class='mcnImageBlockInner'> <table align='left' width='100%' border='0' cellpadding='0' cellspacing='0' class='mcnImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnImageContent' valign='top' style='padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <a href='http://edx.org' title='' class='' target='_self' style='word-wrap: break-word !important;'> <img align='left' alt='edX' src='http://courses.edx.org/static/images/bulk_email/edXHeaderImage.jpg' width='564.0000152587891' style='max-width: 600px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;line-height: 100%;outline: none;text-decoration: none;height: auto !important;' class='mcnImage'> </a> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='599' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><span style='font-size:11px;'><span style='color:#00a0e3;'>Connect with edX:</span></span> <a href='http://facebook.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #6DC6DD;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END HEADER --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN BODY // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateBody' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #fcfcfc;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='bodyContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnCaptionBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnCaptionBlockOuter'> <tr> <td class='mcnCaptionBlockInner' valign='top' style='padding: 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftContentOuter' width='100%' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnCaptionLeftContentInner' style='padding: 0 9px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='right' border='0' cellpadding='0' cellspacing='0' class='mcnCaptionLeftImageContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td class='mcnCaptionLeftImageContent' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <img alt='' src='{course_image_url}' width='176' style='max-width: 180px;border: 0;line-height: 100%;outline: none;text-decoration: none;vertical-align: bottom;height: auto !important;' class='mcnImage'> </td> </tr> </tbody></table> <table class='mcnCaptionLeftTextContentContainer' align='left' border='0' cellpadding='0' cellspacing='0' width='352' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <h3 class='null' style='display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;margin: 0;text-align: left;color: #606060 !important;'><strong style='font-size: 22px;'>{course_title}</strong><br></h3><br> </td> </tr> </tbody></table> </td> </tr></tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> {{message_body}} </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnDividerBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnDividerBlockOuter'> <tr> <td class='mcnDividerBlockInner' style='padding: 18px 18px 3px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table class='mcnDividerContent' border='0' cellpadding='0' cellspacing='0' width='100%' style='border-top-width: 1px;border-top-style: solid;border-top-color: #666666;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <span></span> </td> </tr> </tbody></table> </td> </tr> </tbody></table><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #606060;font-family: Helvetica;font-size: 14px;line-height: 150%;text-align: left;'> <div style='text-align: right;'><a href='http://facebook.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/FacebookIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://twitter.com/edxonline' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/TwitterIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='https://plus.google.com/108235383044095082735' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/GooglePlusIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a> <a href='http://www.meetup.com/edX-Communities/' target='_blank' style='color: #2f73bc;font-weight: normal;text-decoration: underline;word-wrap: break-word !important;'><img align='none' height='16' src='http://courses.edx.org/static/images/bulk_email/MeetupIcon.png' style='width: 16px;height: 16px;border: 0;line-height: 100%;outline: none;text-decoration: none;' width='16'></a></div> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END BODY --> </td> </tr> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <!-- BEGIN FOOTER // --> <table border='0' cellpadding='0' cellspacing='0' width='100%' id='templateFooter' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #9FCFE8;border-top: 0;border-bottom: 0;'> <tr> <td align='center' valign='top' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table border='0' cellpadding='0' cellspacing='0' width='600' class='templateContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tr> <td valign='top' class='footerContainer' style='padding-top: 10px;padding-right: 18px;padding-bottom: 10px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'><table border='0' cellpadding='0' cellspacing='0' width='100%' class='mcnTextBlock' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody class='mcnTextBlockOuter'> <tr> <td valign='top' class='mcnTextBlockInner' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <table align='left' border='0' cellpadding='0' cellspacing='0' width='600' class='mcnTextContentContainer' style='border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;'> <tbody><tr> <td valign='top' class='mcnTextContent' style='padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;color: #f2f2f2;font-family: Helvetica;font-size: 11px;line-height: 125%;text-align: left;'> <em>Copyright \xa9 2013 edX, All rights reserved.</em><br><br><br> <b>Our mailing address is:</b><br> edX<br> 11 Cambridge Center, Suite 101<br> Cambridge, MA, USA 02142<br><br><br>This email was automatically sent from {platform_name}. <br>You are receiving this email at address {email} because you are enrolled in <a href='{course_url}'>{course_title}</a>.<br>To stop receiving email like this, update your course email settings <a href='{account_settings_url}'>here</a>. <br> </td> </tr> </tbody></table> </td> </tr> </tbody></table></td> </tr> </table> </td> </tr> </table> <!-- // END FOOTER --> </td> </tr> </table> <!-- // END TEMPLATE --> </td> </tr> </table> </center> </body> </body> </html>", u'{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your account settings at {account_settings_url}.\r\n', None) | |
Problem installing fixture '/Users/db/dev/edx-platform/lms/djangoapps/bulk_email/fixtures/course_email_template.json': Traceback (most recent call last): | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/core/management/commands/loaddata.py", line 196, in handle | |
obj.save(using=using) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/core/serializers/base.py", line 165, in save | |
models.Model.save_base(self.object, using=using, raw=True) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/models/base.py", line 551, in save_base | |
result = manager._insert([self], fields=fields, return_id=update_pk, using=using, raw=raw) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/models/manager.py", line 203, in _insert | |
return insert_query(self.model, objs, fields, **kwargs) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/models/query.py", line 1593, in insert_query | |
return query.get_compiler(using=using).execute_sql(return_id) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/models/sql/compiler.py", line 912, in execute_sql | |
cursor.execute(sql, params) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/backends/util.py", line 40, in execute | |
return self.cursor.execute(sql, params) | |
File "/Users/db/.virtualenvs/edx-platform/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py", line 344, in execute | |
return Database.Cursor.execute(self, query, params) | |
DatabaseError: Could not load bulk_email.CourseEmailTemplate(pk=1): table bulk_email_courseemailtemplate has no column named name | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0007_load_course_email_template ); args=('bulk_email', '0007_load_course_email_template') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0007_load_course_email_template, 2015-05-14 20:31:05.585984); args=['bulk_email', '0007_load_course_email_template', u'2015-05-14 20:31:05.585984'] | |
> bulk_email:0008_add_course_authorizations | |
DEBUG:south:execute "CREATE TABLE "bulk_email_courseauthorization" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "email_enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "bulk_email_courseauthorization" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(255) NOT NULL, "email_enabled" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseauthorization_ff48d8e5" ON "bulk_email_courseauthorization" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseauthorization_ff48d8e5" ON "bulk_email_courseauthorization" ("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0008_add_course_authorizations ); args=('bulk_email', '0008_add_course_authorizations') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0008_add_course_authorizations, 2015-05-14 20:31:05.606230); args=['bulk_email', '0008_add_course_authorizations', u'2015-05-14 20:31:05.606230'] | |
> bulk_email:0009_force_unique_course_ids | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_courseauthorization_course_id" ON "bulk_email_courseauthorization"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_courseauthorization_course_id" ON "bulk_email_courseauthorization"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0009_force_unique_course_ids ); args=('bulk_email', '0009_force_unique_course_ids') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0009_force_unique_course_ids, 2015-05-14 20:31:05.625755); args=['bulk_email', '0009_force_unique_course_ids', u'2015-05-14 20:31:05.625755'] | |
> bulk_email:0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_ | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_optout_course_id__user_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_optout" ("course_id" varchar(255) NOT NULL, "user_id" integer, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_optout"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_optout"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id") SELECT "course_id", "user_id", "id" FROM "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_optout" ("course_id", "user_id", "id") SELECT "course_id", "user_id", "id" FROM "bulk_email_optout";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_optout";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_optout" RENAME TO "bulk_email_optout";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_optout_ff48d8e5" ON "bulk_email_optout"("course_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "bulk_email_optout_course_id__user_id" ON "bulk_email_optout"("course_id", "user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "template_name" varchar(255) NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "template_name" varchar(255) NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject") SELECT "html_message", "created", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject") SELECT "html_message", "created", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "template_name" varchar(255), "from_addr" varchar(255) NULL, "sender_id" integer, "modified" datetime NOT NULL, "slug" varchar(128) NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "created" datetime NOT NULL, "template_name" varchar(255), "from_addr" varchar(255) NULL, "sender_id" integer, "modified" datetime NOT NULL, "slug" varchar(128) NOT NULL, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "id" integer PRIMARY KEY, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "template_name", "sender_id", "modified", "id", "to_option", "course_id", "text_message", "slug", "subject") SELECT "html_message", "created", "template_name", "sender_id", "modified", "id", "to_option", "course_id", "text_message", "slug", "subject" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "template_name", "sender_id", "modified", "id", "to_option", "course_id", "text_message", "slug", "subject") SELECT "html_message", "created", "template_name", "sender_id", "modified", "id", "to_option", "course_id", "text_message", "slug", "subject" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_901f59e9"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_36af87d1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseemail_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "from_addr" varchar(255), "template_name" varchar(255), "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemail" ("html_message" text, "from_addr" varchar(255), "template_name" varchar(255), "created" datetime NOT NULL, "sender_id" integer, "modified" datetime NOT NULL, "id" integer PRIMARY KEY, "to_option" varchar(64) NOT NULL, "course_id" varchar(255) NOT NULL, "text_message" text, "slug" varchar(128) NOT NULL, "subject" varchar(128) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemail"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemail"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "template_name", "from_addr", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject") SELECT "html_message", "created", "template_name", "from_addr", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject" FROM "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemail" ("html_message", "created", "template_name", "from_addr", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject") SELECT "html_message", "created", "template_name", "from_addr", "sender_id", "modified", "slug", "to_option", "course_id", "text_message", "id", "subject" FROM "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemail" RENAME TO "bulk_email_courseemail";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_901f59e9" ON "bulk_email_courseemail"("sender_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_36af87d1" ON "bulk_email_courseemail"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseemail_ff48d8e5" ON "bulk_email_courseemail"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemailtemplate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemailtemplate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseemailtemplate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemailtemplate"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseemailtemplate" ("plain_template" text, "id" integer PRIMARY KEY, "name" varchar(255) NULL UNIQUE, "html_template" text)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseemailtemplate" ("plain_template" text, "id" integer PRIMARY KEY, "name" varchar(255) NULL UNIQUE, "html_template" text); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseemailtemplate"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseemailtemplate"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseemailtemplate" ("id", "html_template", "plain_template") SELECT "id", "html_template", "plain_template" FROM "bulk_email_courseemailtemplate";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseemailtemplate" ("id", "html_template", "plain_template") SELECT "id", "html_template", "plain_template" FROM "bulk_email_courseemailtemplate";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseemailtemplate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseemailtemplate";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseemailtemplate" RENAME TO "bulk_email_courseemailtemplate";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseemailtemplate" RENAME TO "bulk_email_courseemailtemplate";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseauthorization"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseauthorization"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseauthorization_course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("bulk_email_courseauthorization"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseauthorization_course_id"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("bulk_email_courseauthorization_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseauthorization"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_bulk_email_courseauthorization" ("course_id" varchar(255) NOT NULL UNIQUE UNIQUE, "id" integer PRIMARY KEY, "email_enabled" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_bulk_email_courseauthorization" ("course_id" varchar(255) NOT NULL UNIQUE UNIQUE, "id" integer PRIMARY KEY, "email_enabled" bool NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("bulk_email_courseauthorization"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_bulk_email_courseauthorization"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_bulk_email_courseauthorization" ("id", "course_id", "email_enabled") SELECT "id", "course_id", "email_enabled" FROM "bulk_email_courseauthorization";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_bulk_email_courseauthorization" ("id", "course_id", "email_enabled") SELECT "id", "course_id", "email_enabled" FROM "bulk_email_courseauthorization";; args=[] | |
DEBUG:south:execute "DROP TABLE "bulk_email_courseauthorization";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "bulk_email_courseauthorization";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_bulk_email_courseauthorization" RENAME TO "bulk_email_courseauthorization";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_bulk_email_courseauthorization" RENAME TO "bulk_email_courseauthorization";; args=[] | |
DEBUG:south:execute "CREATE INDEX "bulk_email_courseauthorization_ff48d8e5" ON "bulk_email_courseauthorization"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "bulk_email_courseauthorization_ff48d8e5" ON "bulk_email_courseauthorization"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = bulk_email AND "south_migrationhistory"."migration" = 0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_ ); args=('bulk_email', '0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (bulk_email, 0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_, 2015-05-14 20:31:05.703306); args=['bulk_email', '0010_auto__chg_field_optout_course_id__add_field_courseemail_template_name_', u'2015-05-14 20:31:05.703306'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseemail AND "django_content_type"."app_label" = bulk_email ); args=('courseemail', 'bulk_email') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course email, bulk_email, courseemail); args=[u'course email', 'bulk_email', 'courseemail'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = optout AND "django_content_type"."app_label" = bulk_email ); args=('optout', 'bulk_email') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (optout, bulk_email, optout); args=[u'optout', 'bulk_email', 'optout'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseemailtemplate AND "django_content_type"."app_label" = bulk_email ); args=('courseemailtemplate', 'bulk_email') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course email template, bulk_email, courseemailtemplate); args=[u'course email template', 'bulk_email', 'courseemailtemplate'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = courseauthorization AND "django_content_type"."app_label" = bulk_email ); args=('courseauthorization', 'bulk_email') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (course authorization, bulk_email, courseauthorization); args=[u'course authorization', 'bulk_email', 'courseauthorization'] | |
DEBUG:django.db.backends:(0.000) 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 (65, 66, 67, 68) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(65, 66, 67, 68) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add course email AS "name", 65 AS "content_type_id", add_courseemail AS "codename" UNION ALL SELECT Can change course email, 65, change_courseemail UNION ALL SELECT Can delete course email, 65, delete_courseemail UNION ALL SELECT Can add optout, 66, add_optout UNION ALL SELECT Can change optout, 66, change_optout UNION ALL SELECT Can delete optout, 66, delete_optout UNION ALL SELECT Can add course email template, 67, add_courseemailtemplate UNION ALL SELECT Can change course email template, 67, change_courseemailtemplate UNION ALL SELECT Can delete course email template, 67, delete_courseemailtemplate UNION ALL SELECT Can add course authorization, 68, add_courseauthorization UNION ALL SELECT Can change course authorization, 68, change_courseauthorization UNION ALL SELECT Can delete course authorization, 68, delete_courseauthorization; args=(u'Can add course email', 65, u'add_courseemail', u'Can change course email', 65, u'change_courseemail', u'Can delete course email', 65, u'delete_courseemail', u'Can add optout', 66, u'add_optout', u'Can change optout', 66, u'change_optout', u'Can delete optout', 66, u'delete_optout', u'Can add course email template', 67, u'add_courseemailtemplate', u'Can change course email template', 67, u'change_courseemailtemplate', u'Can delete course email template', 67, u'delete_courseemailtemplate', u'Can add course authorization', 68, u'add_courseauthorization', u'Can change course authorization', 68, u'change_courseauthorization', u'Can delete course authorization', 68, u'delete_courseauthorization') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = bulk_email ORDER BY "django_content_type"."name" ASC; args=('bulk_email',) | |
- Loading initial data for bulk_email. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for branding: | |
- Migrating forwards to 0001_initial. | |
> branding:0001_initial | |
DEBUG:south:execute "CREATE TABLE "branding_brandinginfoconfig" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "configuration" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "branding_brandinginfoconfig" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "configuration" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "branding_brandinginfoconfig_16905482" ON "branding_brandinginfoconfig" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "branding_brandinginfoconfig_16905482" ON "branding_brandinginfoconfig" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = branding AND "south_migrationhistory"."migration" = 0001_initial ); args=('branding', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (branding, 0001_initial, 2015-05-14 20:31:05.965847); args=['branding', '0001_initial', u'2015-05-14 20:31:05.965847'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = brandinginfoconfig AND "django_content_type"."app_label" = branding ); args=('brandinginfoconfig', 'branding') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (branding info config, branding, brandinginfoconfig); args=[u'branding info config', 'branding', 'brandinginfoconfig'] | |
DEBUG:django.db.backends:(0.000) 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 (69) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(69,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add branding info config AS "name", 69 AS "content_type_id", add_brandinginfoconfig AS "codename" UNION ALL SELECT Can change branding info config, 69, change_brandinginfoconfig UNION ALL SELECT Can delete branding info config, 69, delete_brandinginfoconfig; args=(u'Can add branding info config', 69, u'add_brandinginfoconfig', u'Can change branding info config', 69, u'change_brandinginfoconfig', u'Can delete branding info config', 69, u'delete_brandinginfoconfig') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = branding ORDER BY "django_content_type"."name" ASC; args=('branding',) | |
- Loading initial data for branding. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.004) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for external_auth: | |
- Migrating forwards to 0001_initial. | |
> external_auth:0001_initial | |
DEBUG:south:execute "CREATE TABLE "external_auth_externalauthmap" ("id" integer NOT NULL PRIMARY KEY, "external_id" varchar(255) NOT NULL, "external_domain" varchar(255) NOT NULL, "external_credentials" text NOT NULL, "external_email" varchar(255) NOT NULL, "external_name" varchar(255) NOT NULL, "user_id" integer NULL UNIQUE, "internal_password" varchar(31) NOT NULL, "dtcreated" datetime NOT NULL, "dtsignup" datetime NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "external_auth_externalauthmap" ("id" integer NOT NULL PRIMARY KEY, "external_id" varchar(255) NOT NULL, "external_domain" varchar(255) NOT NULL, "external_credentials" text NOT NULL, "external_email" varchar(255) NOT NULL, "external_name" varchar(255) NOT NULL, "user_id" integer NULL UNIQUE, "internal_password" varchar(31) NOT NULL, "dtcreated" datetime NOT NULL, "dtsignup" datetime NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "external_auth_externalauthmap_external_id__external_domain" ON "external_auth_externalauthmap"("external_id", "external_domain");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "external_auth_externalauthmap_external_id__external_domain" ON "external_auth_externalauthmap"("external_id", "external_domain");; args=[] | |
DEBUG:south:execute "CREATE INDEX "external_auth_externalauthmap_d5e787" ON "external_auth_externalauthmap" ("external_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "external_auth_externalauthmap_d5e787" ON "external_auth_externalauthmap" ("external_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "external_auth_externalauthmap_a570024c" ON "external_auth_externalauthmap" ("external_domain");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "external_auth_externalauthmap_a570024c" ON "external_auth_externalauthmap" ("external_domain");; args=[] | |
DEBUG:south:execute "CREATE INDEX "external_auth_externalauthmap_a142061d" ON "external_auth_externalauthmap" ("external_email");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "external_auth_externalauthmap_a142061d" ON "external_auth_externalauthmap" ("external_email");; args=[] | |
DEBUG:south:execute "CREATE INDEX "external_auth_externalauthmap_c1a016f" ON "external_auth_externalauthmap" ("external_name");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "external_auth_externalauthmap_c1a016f" ON "external_auth_externalauthmap" ("external_name");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = external_auth AND "south_migrationhistory"."migration" = 0001_initial ); args=('external_auth', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (external_auth, 0001_initial, 2015-05-14 20:31:06.227857); args=['external_auth', '0001_initial', u'2015-05-14 20:31:06.227857'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = externalauthmap AND "django_content_type"."app_label" = external_auth ); args=('externalauthmap', 'external_auth') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (external auth map, external_auth, externalauthmap); args=[u'external auth map', 'external_auth', 'externalauthmap'] | |
DEBUG:django.db.backends:(0.000) 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 (70) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(70,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add external auth map AS "name", 70 AS "content_type_id", add_externalauthmap AS "codename" UNION ALL SELECT Can change external auth map, 70, change_externalauthmap UNION ALL SELECT Can delete external auth map, 70, delete_externalauthmap; args=(u'Can add external auth map', 70, u'add_externalauthmap', u'Can change external auth map', 70, u'change_externalauthmap', u'Can delete external auth map', 70, u'delete_externalauthmap') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = external_auth ORDER BY "django_content_type"."name" ASC; args=('external_auth',) | |
- Loading initial data for external_auth. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for oauth2: | |
- Migrating forwards to 0004_auto__add_index_accesstoken_token. | |
> oauth2:0001_initial | |
DEBUG:south:execute "CREATE TABLE "oauth2_client" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "url" varchar(200) NOT NULL, "redirect_uri" varchar(200) NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "client_type" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "oauth2_client" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "url" varchar(200) NOT NULL, "redirect_uri" varchar(200) NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "client_type" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "oauth2_grant" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "client_id" integer NOT NULL, "code" varchar(255) NOT NULL, "expires" datetime NOT NULL, "redirect_uri" varchar(255) NOT NULL, "scope" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "oauth2_grant" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "client_id" integer NOT NULL, "code" varchar(255) NOT NULL, "expires" datetime NOT NULL, "redirect_uri" varchar(255) NOT NULL, "scope" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "oauth2_accesstoken" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "token" varchar(255) NOT NULL, "client_id" integer NOT NULL, "expires" datetime NOT NULL, "scope" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "oauth2_accesstoken" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "token" varchar(255) NOT NULL, "client_id" integer NOT NULL, "expires" datetime NOT NULL, "scope" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "oauth2_refreshtoken" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "token" varchar(255) NOT NULL, "access_token_id" integer NOT NULL UNIQUE, "client_id" integer NOT NULL, "expired" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "oauth2_refreshtoken" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "token" varchar(255) NOT NULL, "access_token_id" integer NOT NULL UNIQUE, "client_id" integer NOT NULL, "expired" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_grant_fbfc09f1" ON "oauth2_grant" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_grant_fbfc09f1" ON "oauth2_grant" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_grant_4a4e8ffb" ON "oauth2_grant" ("client_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_grant_4a4e8ffb" ON "oauth2_grant" ("client_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_accesstoken_fbfc09f1" ON "oauth2_accesstoken" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_accesstoken_fbfc09f1" ON "oauth2_accesstoken" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_accesstoken_4a4e8ffb" ON "oauth2_accesstoken" ("client_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_accesstoken_4a4e8ffb" ON "oauth2_accesstoken" ("client_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_refreshtoken_fbfc09f1" ON "oauth2_refreshtoken" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_refreshtoken_fbfc09f1" ON "oauth2_refreshtoken" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_refreshtoken_4a4e8ffb" ON "oauth2_refreshtoken" ("client_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_refreshtoken_4a4e8ffb" ON "oauth2_refreshtoken" ("client_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = oauth2 AND "south_migrationhistory"."migration" = 0001_initial ); args=('oauth2', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (oauth2, 0001_initial, 2015-05-14 20:31:06.713278); args=['oauth2', '0001_initial', u'2015-05-14 20:31:06.713278'] | |
> oauth2:0002_auto__chg_field_client_user | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("oauth2_client_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_oauth2_client" ("user_id" integer NULL, "url" varchar(200) NOT NULL, "client_type" integer NOT NULL, "redirect_uri" varchar(200) NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_oauth2_client" ("user_id" integer NULL, "url" varchar(200) NOT NULL, "client_type" integer NOT NULL, "redirect_uri" varchar(200) NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_oauth2_client"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_oauth2_client" ("id", "user_id", "url", "redirect_uri", "client_id", "client_secret", "client_type") SELECT "id", "user_id", "url", "redirect_uri", "client_id", "client_secret", "client_type" FROM "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_oauth2_client" ("id", "user_id", "url", "redirect_uri", "client_id", "client_secret", "client_type") SELECT "id", "user_id", "url", "redirect_uri", "client_id", "client_secret", "client_type" FROM "oauth2_client";; args=[] | |
DEBUG:south:execute "DROP TABLE "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "oauth2_client";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_oauth2_client" RENAME TO "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_oauth2_client" RENAME TO "oauth2_client";; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = oauth2 AND "south_migrationhistory"."migration" = 0002_auto__chg_field_client_user ); args=('oauth2', '0002_auto__chg_field_client_user') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (oauth2, 0002_auto__chg_field_client_user, 2015-05-14 20:31:06.740919); args=['oauth2', '0002_auto__chg_field_client_user', u'2015-05-14 20:31:06.740919'] | |
> oauth2:0003_auto__add_field_client_name | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("oauth2_client_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_oauth2_client" ("user_id" integer, "name" varchar(255) NOT NULL, "redirect_uri" varchar(200) NOT NULL, "url" varchar(200) NOT NULL, "client_type" integer NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_oauth2_client" ("user_id" integer, "name" varchar(255) NOT NULL, "redirect_uri" varchar(200) NOT NULL, "url" varchar(200) NOT NULL, "client_type" integer NOT NULL, "client_id" varchar(255) NOT NULL, "client_secret" varchar(255) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("oauth2_client"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_oauth2_client"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_oauth2_client" ("user_id", "url", "client_type", "redirect_uri", "client_id", "client_secret", "id", "name") SELECT "user_id", "url", "client_type", "redirect_uri", "client_id", "client_secret", "id", '' as "name" FROM "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_oauth2_client" ("user_id", "url", "client_type", "redirect_uri", "client_id", "client_secret", "id", "name") SELECT "user_id", "url", "client_type", "redirect_uri", "client_id", "client_secret", "id", '' as "name" FROM "oauth2_client";; args=[] | |
DEBUG:south:execute "DROP TABLE "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "oauth2_client";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_oauth2_client" RENAME TO "oauth2_client";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_oauth2_client" RENAME TO "oauth2_client";; args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_client_fbfc09f1" ON "oauth2_client"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = oauth2 AND "south_migrationhistory"."migration" = 0003_auto__add_field_client_name ); args=('oauth2', '0003_auto__add_field_client_name') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (oauth2, 0003_auto__add_field_client_name, 2015-05-14 20:31:06.765721); args=['oauth2', '0003_auto__add_field_client_name', u'2015-05-14 20:31:06.765721'] | |
> oauth2:0004_auto__add_index_accesstoken_token | |
DEBUG:south:execute "CREATE INDEX "oauth2_accesstoken_bfac9f99" ON "oauth2_accesstoken" ("token");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "oauth2_accesstoken_bfac9f99" ON "oauth2_accesstoken" ("token");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = oauth2 AND "south_migrationhistory"."migration" = 0004_auto__add_index_accesstoken_token ); args=('oauth2', '0004_auto__add_index_accesstoken_token') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (oauth2, 0004_auto__add_index_accesstoken_token, 2015-05-14 20:31:06.789691); args=['oauth2', '0004_auto__add_index_accesstoken_token', u'2015-05-14 20:31:06.789691'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = client AND "django_content_type"."app_label" = oauth2 ); args=('client', 'oauth2') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (client, oauth2, client); args=[u'client', 'oauth2', 'client'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = grant AND "django_content_type"."app_label" = oauth2 ); args=('grant', 'oauth2') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (grant, oauth2, grant); args=[u'grant', 'oauth2', 'grant'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = accesstoken AND "django_content_type"."app_label" = oauth2 ); args=('accesstoken', 'oauth2') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (access token, oauth2, accesstoken); args=[u'access token', 'oauth2', 'accesstoken'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = refreshtoken AND "django_content_type"."app_label" = oauth2 ); args=('refreshtoken', 'oauth2') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (refresh token, oauth2, refreshtoken); args=[u'refresh token', 'oauth2', 'refreshtoken'] | |
DEBUG:django.db.backends:(0.000) 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 (72, 73, 74, 71) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(72, 73, 74, 71) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add client AS "name", 71 AS "content_type_id", add_client AS "codename" UNION ALL SELECT Can change client, 71, change_client UNION ALL SELECT Can delete client, 71, delete_client UNION ALL SELECT Can add grant, 72, add_grant UNION ALL SELECT Can change grant, 72, change_grant UNION ALL SELECT Can delete grant, 72, delete_grant UNION ALL SELECT Can add access token, 73, add_accesstoken UNION ALL SELECT Can change access token, 73, change_accesstoken UNION ALL SELECT Can delete access token, 73, delete_accesstoken UNION ALL SELECT Can add refresh token, 74, add_refreshtoken UNION ALL SELECT Can change refresh token, 74, change_refreshtoken UNION ALL SELECT Can delete refresh token, 74, delete_refreshtoken; args=(u'Can add client', 71, u'add_client', u'Can change client', 71, u'change_client', u'Can delete client', 71, u'delete_client', u'Can add grant', 72, u'add_grant', u'Can change grant', 72, u'change_grant', u'Can delete grant', 72, u'delete_grant', u'Can add access token', 73, u'add_accesstoken', u'Can change access token', 73, u'change_accesstoken', u'Can delete access token', 73, u'delete_accesstoken', u'Can add refresh token', 74, u'add_refreshtoken', u'Can change refresh token', 74, u'change_refreshtoken', u'Can delete refresh token', 74, u'delete_refreshtoken') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = oauth2 ORDER BY "django_content_type"."name" ASC; args=('oauth2',) | |
- Loading initial data for oauth2. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for oauth2_provider: | |
- Migrating forwards to 0001_initial. | |
> oauth2_provider:0001_initial | |
DEBUG:south:execute "CREATE TABLE "oauth2_provider_trustedclient" ("id" integer NOT NULL PRIMARY KEY, "client_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "oauth2_provider_trustedclient" ("id" integer NOT NULL PRIMARY KEY, "client_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "oauth2_provider_trustedclient_4a4e8ffb" ON "oauth2_provider_trustedclient" ("client_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "oauth2_provider_trustedclient_4a4e8ffb" ON "oauth2_provider_trustedclient" ("client_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = oauth2_provider AND "south_migrationhistory"."migration" = 0001_initial ); args=('oauth2_provider', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (oauth2_provider, 0001_initial, 2015-05-14 20:31:07.053149); args=['oauth2_provider', '0001_initial', u'2015-05-14 20:31:07.053149'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = trustedclient AND "django_content_type"."app_label" = oauth2_provider ); args=('trustedclient', 'oauth2_provider') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (trusted client, oauth2_provider, trustedclient); args=[u'trusted client', 'oauth2_provider', 'trustedclient'] | |
DEBUG:django.db.backends:(0.000) 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 (75) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(75,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add trusted client AS "name", 75 AS "content_type_id", add_trustedclient AS "codename" UNION ALL SELECT Can change trusted client, 75, change_trustedclient UNION ALL SELECT Can delete trusted client, 75, delete_trustedclient; args=(u'Can add trusted client', 75, u'add_trustedclient', u'Can change trusted client', 75, u'change_trustedclient', u'Can delete trusted client', 75, u'delete_trustedclient') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = oauth2_provider ORDER BY "django_content_type"."name" ASC; args=('oauth2_provider',) | |
- Loading initial data for oauth2_provider. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.002) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for wiki: | |
- Migrating forwards to 0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height. | |
> wiki:0001_initial | |
DEBUG:south:execute "CREATE TABLE "wiki_article" ("id" integer NOT NULL PRIMARY KEY, "current_revision_id" integer NULL UNIQUE, "created" datetime NOT NULL, "modified" datetime NOT NULL, "owner_id" integer NULL, "group_id" integer NULL, "group_read" bool NOT NULL, "group_write" bool NOT NULL, "other_read" bool NOT NULL, "other_write" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "wiki_article" ("id" integer NOT NULL PRIMARY KEY, "current_revision_id" integer NULL UNIQUE, "created" datetime NOT NULL, "modified" datetime NOT NULL, "owner_id" integer NULL, "group_id" integer NULL, "group_read" bool NOT NULL, "group_write" bool NOT NULL, "other_read" bool NOT NULL, "other_write" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_articleforobject" ("id" integer NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "content_type_id" integer NOT NULL, "object_id" integer unsigned NOT NULL, "is_mptt" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_articleforobject" ("id" integer NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "content_type_id" integer NOT NULL, "object_id" integer unsigned NOT NULL, "is_mptt" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_articleforobject_content_type_id__object_id" ON "wiki_articleforobject"("content_type_id", "object_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_articleforobject_content_type_id__object_id" ON "wiki_articleforobject"("content_type_id", "object_id");; args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_articlerevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "article_id" integer NOT NULL, "content" text NOT NULL, "title" varchar(512) NOT NULL, "redirect_id" integer NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_articlerevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "article_id" integer NOT NULL, "content" text NOT NULL, "title" varchar(512) NOT NULL, "redirect_id" integer NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_articlerevision_article_id__revision_number" ON "wiki_articlerevision"("article_id", "revision_number");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_articlerevision_article_id__revision_number" ON "wiki_articlerevision"("article_id", "revision_number");; args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_urlpath" ("id" integer NOT NULL PRIMARY KEY, "slug" varchar(50) NULL, "site_id" integer NOT NULL, "parent_id" integer NULL, "lft" integer unsigned NOT NULL, "rght" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "level" integer unsigned NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_urlpath" ("id" integer NOT NULL PRIMARY KEY, "slug" varchar(50) NULL, "site_id" integer NOT NULL, "parent_id" integer NULL, "lft" integer unsigned NOT NULL, "rght" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "level" integer unsigned NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");; args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_articleplugin" ("id" integer NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "deleted" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_articleplugin" ("id" integer NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "deleted" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_reusableplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "wiki_reusableplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_reusableplugin_articles" ("id" integer NOT NULL PRIMARY KEY, "reusableplugin_id" integer NOT NULL, "article_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_reusableplugin_articles" ("id" integer NOT NULL PRIMARY KEY, "reusableplugin_id" integer NOT NULL, "article_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_reusableplugin_articles_reusableplugin_id__article_id" ON "wiki_reusableplugin_articles"("reusableplugin_id", "article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_reusableplugin_articles_reusableplugin_id__article_id" ON "wiki_reusableplugin_articles"("reusableplugin_id", "article_id");; args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_revisionplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY, "revision_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_revisionplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY, "revision_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_article_5d52dd10" ON "wiki_article" ("owner_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_article_5d52dd10" ON "wiki_article" ("owner_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_article_bda51c3c" ON "wiki_article" ("group_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_article_bda51c3c" ON "wiki_article" ("group_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articleforobject_30525a19" ON "wiki_articleforobject" ("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articleforobject_30525a19" ON "wiki_articleforobject" ("article_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articleforobject_e4470c6e" ON "wiki_articleforobject" ("content_type_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articleforobject_e4470c6e" ON "wiki_articleforobject" ("content_type_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_fbfc09f1" ON "wiki_articlerevision" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_fbfc09f1" ON "wiki_articlerevision" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_49bc38cc" ON "wiki_articlerevision" ("previous_revision_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_49bc38cc" ON "wiki_articlerevision" ("previous_revision_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_30525a19" ON "wiki_articlerevision" ("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_30525a19" ON "wiki_articlerevision" ("article_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_5c639c3c" ON "wiki_articlerevision" ("redirect_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_5c639c3c" ON "wiki_articlerevision" ("redirect_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath" ("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath" ("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath" ("site_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath" ("site_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath" ("parent_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath" ("parent_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath" ("lft");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath" ("lft");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath" ("rght");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath" ("rght");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath" ("tree_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath" ("tree_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath" ("level");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath" ("level");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articleplugin_30525a19" ON "wiki_articleplugin" ("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articleplugin_30525a19" ON "wiki_articleplugin" ("article_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_reusableplugin_articles_28b0b358" ON "wiki_reusableplugin_articles" ("reusableplugin_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_reusableplugin_articles_28b0b358" ON "wiki_reusableplugin_articles" ("reusableplugin_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_reusableplugin_articles_30525a19" ON "wiki_reusableplugin_articles" ("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_reusableplugin_articles_30525a19" ON "wiki_reusableplugin_articles" ("article_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_revisionplugin_202bdc7f" ON "wiki_revisionplugin" ("revision_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_revisionplugin_202bdc7f" ON "wiki_revisionplugin" ("revision_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0001_initial ); args=('wiki', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0001_initial, 2015-05-14 20:31:07.385691); args=['wiki', '0001_initial', u'2015-05-14 20:31:07.385691'] | |
> wiki:0002_auto__add_field_articleplugin_created | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articleplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_articleplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_articleplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articleplugin_30525a19"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articleplugin"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_articleplugin" ("deleted" bool NOT NULL, "article_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_articleplugin" ("deleted" bool NOT NULL, "article_id" integer NOT NULL, "id" integer PRIMARY KEY, "created" datetime NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articleplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_articleplugin"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_articleplugin" ("id", "article_id", "deleted", "created") SELECT "id", "article_id", "deleted", '2012-08-16 04:00:00' as "created" FROM "wiki_articleplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_articleplugin" ("id", "article_id", "deleted", "created") SELECT "id", "article_id", "deleted", '2012-08-16 04:00:00' as "created" FROM "wiki_articleplugin";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_articleplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_articleplugin";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_articleplugin" RENAME TO "wiki_articleplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_articleplugin" RENAME TO "wiki_articleplugin";; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articleplugin_30525a19" ON "wiki_articleplugin"("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articleplugin_30525a19" ON "wiki_articleplugin"("article_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0002_auto__add_field_articleplugin_created ); args=('wiki', '0002_auto__add_field_articleplugin_created') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0002_auto__add_field_articleplugin_created, 2015-05-14 20:31:07.422180); args=['wiki', '0002_auto__add_field_articleplugin_created', u'2015-05-14 20:31:07.422180'] | |
> wiki:0003_auto__add_field_urlpath_article | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_site_id__parent_id__slug"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_2a8f42e8"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_efd07f28"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_91543e5a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_42b06ff6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_63f17a16"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_6223029"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_a951d5d6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_site_id__parent_id__slug"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_urlpath" ("rght" integer unsigned NOT NULL, "parent_id" integer, "level" integer unsigned NOT NULL, "site_id" integer NOT NULL, "slug" varchar(50), "lft" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "article_id" integer NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_urlpath" ("rght" integer unsigned NOT NULL, "parent_id" integer, "level" integer unsigned NOT NULL, "site_id" integer NOT NULL, "slug" varchar(50), "lft" integer unsigned NOT NULL, "tree_id" integer unsigned NOT NULL, "article_id" integer NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_urlpath"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_urlpath" ("id", "slug", "site_id", "parent_id", "lft", "rght", "tree_id", "level") SELECT "id", "slug", "site_id", "parent_id", "lft", "rght", "tree_id", "level" FROM "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_urlpath" ("id", "slug", "site_id", "parent_id", "lft", "rght", "tree_id", "level") SELECT "id", "slug", "site_id", "parent_id", "lft", "rght", "tree_id", "level" FROM "wiki_urlpath";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.002) DROP TABLE "wiki_urlpath";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_urlpath" RENAME TO "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_urlpath" RENAME TO "wiki_urlpath";; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath"("level");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath"("level");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath"("tree_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath"("tree_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath"("rght");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath"("rght");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath"("lft");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath"("lft");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath"("parent_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath"("parent_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath"("site_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath"("site_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath"("slug");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0003_auto__add_field_urlpath_article ); args=('wiki', '0003_auto__add_field_urlpath_article') | |
DEBUG:django.db.backends:(0.001) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0003_auto__add_field_urlpath_article, 2015-05-14 20:31:07.470482); args=['wiki', '0003_auto__add_field_urlpath_article', u'2015-05-14 20:31:07.470482'] | |
> wiki:0004_populate_urlpath__article | |
- Migration 'wiki:0004_populate_urlpath__article' is marked for no-dry-run. | |
DEBUG:django.db.backends:(0.000) SELECT "wiki_urlpath"."lft", "wiki_urlpath"."slug", "wiki_urlpath"."parent_id", "wiki_urlpath"."level", "wiki_urlpath"."article_id", "wiki_urlpath"."tree_id", "wiki_urlpath"."rght", "wiki_urlpath"."id", "wiki_urlpath"."site_id" FROM "wiki_urlpath"; args=() | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0004_populate_urlpath__article ); args=('wiki', '0004_populate_urlpath__article') | |
DEBUG:django.db.backends:(0.001) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0004_populate_urlpath__article, 2015-05-14 20:31:07.504995); args=['wiki', '0004_populate_urlpath__article', u'2015-05-14 20:31:07.504995'] | |
> wiki:0005_auto__chg_field_urlpath_article | |
DEBUG:south:execute "UPDATE "wiki_urlpath" SET "article_id"=%s WHERE "article_id" IS NULL" with params "[1]" | |
DEBUG:django.db.backends:(0.000) UPDATE "wiki_urlpath" SET "article_id"=1 WHERE "article_id" IS NULL; args=[1] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_site_id__parent_id__slug"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_site_id__parent_id__slug"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_a951d5d6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_6223029"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_63f17a16"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_42b06ff6"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_91543e5a"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_efd07f28"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_urlpath_2a8f42e8"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_urlpath" ("rght" integer unsigned NOT NULL, "level" integer unsigned NOT NULL, "site_id" integer NOT NULL, "id" integer PRIMARY KEY, "lft" integer unsigned NOT NULL, "parent_id" integer, "tree_id" integer unsigned NOT NULL, "article_id" integer NOT NULL, "slug" varchar(50))" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "_south_new_wiki_urlpath" ("rght" integer unsigned NOT NULL, "level" integer unsigned NOT NULL, "site_id" integer NOT NULL, "id" integer PRIMARY KEY, "lft" integer unsigned NOT NULL, "parent_id" integer, "tree_id" integer unsigned NOT NULL, "article_id" integer NOT NULL, "slug" varchar(50)); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_urlpath"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_urlpath"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_urlpath" ("rght", "parent_id", "level", "site_id", "slug", "lft", "tree_id", "article_id", "id") SELECT "rght", "parent_id", "level", "site_id", "slug", "lft", "tree_id", "article_id", "id" FROM "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_urlpath" ("rght", "parent_id", "level", "site_id", "slug", "lft", "tree_id", "article_id", "id") SELECT "rght", "parent_id", "level", "site_id", "slug", "lft", "tree_id", "article_id", "id" FROM "wiki_urlpath";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_urlpath";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_urlpath" RENAME TO "wiki_urlpath";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_urlpath" RENAME TO "wiki_urlpath";; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_urlpath_site_id__parent_id__slug" ON "wiki_urlpath"("site_id", "parent_id", "slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath"("slug");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_a951d5d6" ON "wiki_urlpath"("slug");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath"("site_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_6223029" ON "wiki_urlpath"("site_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath"("parent_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_63f17a16" ON "wiki_urlpath"("parent_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath"("lft");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_42b06ff6" ON "wiki_urlpath"("lft");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath"("rght");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_91543e5a" ON "wiki_urlpath"("rght");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath"("tree_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_efd07f28" ON "wiki_urlpath"("tree_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath"("level");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_urlpath_2a8f42e8" ON "wiki_urlpath"("level");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0005_auto__chg_field_urlpath_article ); args=('wiki', '0005_auto__chg_field_urlpath_article') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0005_auto__chg_field_urlpath_article, 2015-05-14 20:31:07.556459); args=['wiki', '0005_auto__chg_field_urlpath_article', u'2015-05-14 20:31:07.556459'] | |
> wiki:0006_auto__add_attachmentrevision__add_image__add_attachment | |
DEBUG:south:execute "CREATE TABLE "wiki_attachmentrevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "attachment_id" integer NOT NULL, "file" varchar(100) NOT NULL, "description" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "wiki_attachmentrevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "attachment_id" integer NOT NULL, "file" varchar(100) NOT NULL, "description" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_image" ("revisionplugin_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(2000) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_image" ("revisionplugin_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(2000) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_attachment" ("reusableplugin_ptr_id" integer NOT NULL PRIMARY KEY, "current_revision_id" integer NULL UNIQUE, "original_filename" varchar(256) NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_attachment" ("reusableplugin_ptr_id" integer NOT NULL PRIMARY KEY, "current_revision_id" integer NULL UNIQUE, "original_filename" varchar(256) NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_attachmentrevision_fbfc09f1" ON "wiki_attachmentrevision" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_attachmentrevision_fbfc09f1" ON "wiki_attachmentrevision" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_attachmentrevision_49bc38cc" ON "wiki_attachmentrevision" ("previous_revision_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_attachmentrevision_49bc38cc" ON "wiki_attachmentrevision" ("previous_revision_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_attachmentrevision_edee6011" ON "wiki_attachmentrevision" ("attachment_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_attachmentrevision_edee6011" ON "wiki_attachmentrevision" ("attachment_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0006_auto__add_attachmentrevision__add_image__add_attachment ); args=('wiki', '0006_auto__add_attachmentrevision__add_image__add_attachment') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0006_auto__add_attachmentrevision__add_image__add_attachment, 2015-05-14 20:31:07.826031); args=['wiki', '0006_auto__add_attachmentrevision__add_image__add_attachment', u'2015-05-14 20:31:07.826031'] | |
> wiki:0007_auto__add_articlesubscription | |
DEBUG:south:execute "CREATE TABLE "wiki_articlesubscription" ("subscription_ptr_id" integer NOT NULL UNIQUE, "articleplugin_ptr_id" integer NOT NULL PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "wiki_articlesubscription" ("subscription_ptr_id" integer NOT NULL UNIQUE, "articleplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0007_auto__add_articlesubscription ); args=('wiki', '0007_auto__add_articlesubscription') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0007_auto__add_articlesubscription, 2015-05-14 20:31:07.866228); args=['wiki', '0007_auto__add_articlesubscription', u'2015-05-14 20:31:07.866228'] | |
> wiki:0008_auto__add_simpleplugin__add_revisionpluginrevision__add_imagerevision_ | |
DEBUG:south:execute "CREATE TABLE "wiki_simpleplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY, "article_revision_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "wiki_simpleplugin" ("articleplugin_ptr_id" integer NOT NULL PRIMARY KEY, "article_revision_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_revisionpluginrevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "plugin_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_revisionpluginrevision" ("id" integer NOT NULL PRIMARY KEY, "revision_number" integer NOT NULL, "user_message" text NOT NULL, "automatic_log" text NOT NULL, "ip_address" char(15) NULL, "user_id" integer NULL, "modified" datetime NOT NULL, "created" datetime NOT NULL, "previous_revision_id" integer NULL, "deleted" bool NOT NULL, "locked" bool NOT NULL, "plugin_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "wiki_imagerevision" ("revisionpluginrevision_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(2000) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "wiki_imagerevision" ("revisionpluginrevision_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(2000) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_image"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_image"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_image"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_image"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_image" ("revisionplugin_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_image" ("revisionplugin_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_image"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_image"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_image" ("revisionplugin_ptr_id") SELECT "revisionplugin_ptr_id" FROM "wiki_image";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_image" ("revisionplugin_ptr_id") SELECT "revisionplugin_ptr_id" FROM "wiki_image";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_image";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_image";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_image" RENAME TO "wiki_image";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_image" RENAME TO "wiki_image";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articlerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_articlerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_article_id__revision_number"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_articlerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_5c639c3c"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_30525a19"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_49bc38cc"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_articlerevision_article_id__revision_number"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articlerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_articlerevision" ("previous_revision_id" integer, "user_id" integer, "created" datetime NOT NULL, "deleted" bool NOT NULL, "article_id" integer NOT NULL, "automatic_log" text NOT NULL, "user_message" text NOT NULL, "modified" datetime NOT NULL, "content" text NOT NULL, "title" varchar(512) NOT NULL, "revision_number" integer NOT NULL, "locked" bool NOT NULL, "ip_address" char(15), "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_articlerevision" ("previous_revision_id" integer, "user_id" integer, "created" datetime NOT NULL, "deleted" bool NOT NULL, "article_id" integer NOT NULL, "automatic_log" text NOT NULL, "user_message" text NOT NULL, "modified" datetime NOT NULL, "content" text NOT NULL, "title" varchar(512) NOT NULL, "revision_number" integer NOT NULL, "locked" bool NOT NULL, "ip_address" char(15), "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_articlerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_articlerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_articlerevision" ("id", "revision_number", "user_message", "automatic_log", "ip_address", "user_id", "modified", "created", "previous_revision_id", "deleted", "locked", "article_id", "content", "title") SELECT "id", "revision_number", "user_message", "automatic_log", "ip_address", "user_id", "modified", "created", "previous_revision_id", "deleted", "locked", "article_id", "content", "title" FROM "wiki_articlerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_articlerevision" ("id", "revision_number", "user_message", "automatic_log", "ip_address", "user_id", "modified", "created", "previous_revision_id", "deleted", "locked", "article_id", "content", "title") SELECT "id", "revision_number", "user_message", "automatic_log", "ip_address", "user_id", "modified", "created", "previous_revision_id", "deleted", "locked", "article_id", "content", "title" FROM "wiki_articlerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_articlerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_articlerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_articlerevision" RENAME TO "wiki_articlerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_articlerevision" RENAME TO "wiki_articlerevision";; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_30525a19" ON "wiki_articlerevision"("article_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_30525a19" ON "wiki_articlerevision"("article_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_49bc38cc" ON "wiki_articlerevision"("previous_revision_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_49bc38cc" ON "wiki_articlerevision"("previous_revision_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "wiki_articlerevision_fbfc09f1" ON "wiki_articlerevision"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "wiki_articlerevision_fbfc09f1" ON "wiki_articlerevision"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "wiki_articlerevision_article_id__revision_number" ON "wiki_articlerevision"("article_id", "revision_number");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "wiki_articlerevision_article_id__revision_number" ON "wiki_articlerevision"("article_id", "revision_number");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("wiki_revisionplugin_202bdc7f"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_revisionplugin"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id") SELECT "articleplugin_ptr_id" FROM "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id") SELECT "articleplugin_ptr_id" FROM "wiki_revisionplugin";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_revisionplugin";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_revisionplugin" RENAME TO "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_revisionplugin" RENAME TO "wiki_revisionplugin";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_revisionplugin" ("current_revision_id" integer NULL UNIQUE, "articleplugin_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_revisionplugin" ("current_revision_id" integer NULL UNIQUE, "articleplugin_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_revisionplugin"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_revisionplugin"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id") SELECT "articleplugin_ptr_id" FROM "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_revisionplugin" ("articleplugin_ptr_id") SELECT "articleplugin_ptr_id" FROM "wiki_revisionplugin";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_revisionplugin";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_revisionplugin" RENAME TO "wiki_revisionplugin";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_revisionplugin" RENAME TO "wiki_revisionplugin";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0008_auto__add_simpleplugin__add_revisionpluginrevision__add_imagerevision_ ); args=('wiki', '0008_auto__add_simpleplugin__add_revisionpluginrevision__add_imagerevision_') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0008_auto__add_simpleplugin__add_revisionpluginrevision__add_imagerevision_, 2015-05-14 20:31:07.949806); args=['wiki', '0008_auto__add_simpleplugin__add_revisionpluginrevision__add_imagerevision_', u'2015-05-14 20:31:07.949806'] | |
> wiki:0009_auto__add_field_imagerevision_width__add_field_imagerevision_height | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_imagerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_imagerevision" ("revisionpluginrevision_ptr_id", "image", "width") SELECT "revisionpluginrevision_ptr_id", "image", '0' as "width" FROM "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_imagerevision" ("revisionpluginrevision_ptr_id", "image", "width") SELECT "revisionpluginrevision_ptr_id", "image", '0' as "width" FROM "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NOT NULL, "height" smallint NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NOT NULL, "height" smallint NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_imagerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "revisionpluginrevision_ptr_id", "height") SELECT "width", "image", "revisionpluginrevision_ptr_id", '0' as "height" FROM "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "revisionpluginrevision_ptr_id", "height") SELECT "width", "image", "revisionpluginrevision_ptr_id", '0' as "height" FROM "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0009_auto__add_field_imagerevision_width__add_field_imagerevision_height ); args=('wiki', '0009_auto__add_field_imagerevision_width__add_field_imagerevision_height') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0009_auto__add_field_imagerevision_width__add_field_imagerevision_height, 2015-05-14 20:31:08.007511); args=['wiki', '0009_auto__add_field_imagerevision_width__add_field_imagerevision_height', u'2015-05-14 20:31:08.007511'] | |
> wiki:0010_auto__chg_field_imagerevision_image | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY, "height" smallint NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NOT NULL, "image" varchar(2000) NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY, "height" smallint NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_imagerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "height", "revisionpluginrevision_ptr_id") SELECT "width", "image", "height", "revisionpluginrevision_ptr_id" FROM "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "height", "revisionpluginrevision_ptr_id") SELECT "width", "image", "height", "revisionpluginrevision_ptr_id" FROM "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0010_auto__chg_field_imagerevision_image ); args=('wiki', '0010_auto__chg_field_imagerevision_image') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0010_auto__chg_field_imagerevision_image, 2015-05-14 20:31:08.055890); args=['wiki', '0010_auto__chg_field_imagerevision_image', u'2015-05-14 20:31:08.055890'] | |
> wiki:0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NULL, "image" varchar(2000), "height" smallint NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint NULL, "image" varchar(2000), "height" smallint NOT NULL, "revisionpluginrevision_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_imagerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "revisionpluginrevision_ptr_id", "height") SELECT "width", "image", "revisionpluginrevision_ptr_id", "height" FROM "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "revisionpluginrevision_ptr_id", "height") SELECT "width", "image", "revisionpluginrevision_ptr_id", "height" FROM "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint, "image" varchar(2000), "revisionpluginrevision_ptr_id" integer PRIMARY KEY, "height" smallint NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_wiki_imagerevision" ("width" smallint, "image" varchar(2000), "revisionpluginrevision_ptr_id" integer PRIMARY KEY, "height" smallint NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("wiki_imagerevision"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_wiki_imagerevision"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "height", "revisionpluginrevision_ptr_id") SELECT "width", "image", "height", "revisionpluginrevision_ptr_id" FROM "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_wiki_imagerevision" ("width", "image", "height", "revisionpluginrevision_ptr_id") SELECT "width", "image", "height", "revisionpluginrevision_ptr_id" FROM "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "DROP TABLE "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "wiki_imagerevision";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_wiki_imagerevision" RENAME TO "wiki_imagerevision";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = wiki AND "south_migrationhistory"."migration" = 0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height ); args=('wiki', '0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (wiki, 0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height, 2015-05-14 20:31:08.113172); args=['wiki', '0011_auto__chg_field_imagerevision_width__chg_field_imagerevision_height', u'2015-05-14 20:31:08.113172'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = article AND "django_content_type"."app_label" = wiki ); args=('article', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (article, wiki, article); args=[u'article', 'wiki', 'article'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = articleforobject AND "django_content_type"."app_label" = wiki ); args=('articleforobject', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (Article for object, wiki, articleforobject); args=[u'Article for object', 'wiki', 'articleforobject'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = articlerevision AND "django_content_type"."app_label" = wiki ); args=('articlerevision', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (article revision, wiki, articlerevision); args=[u'article revision', 'wiki', 'articlerevision'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = urlpath AND "django_content_type"."app_label" = wiki ); args=('urlpath', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (URL path, wiki, urlpath); args=[u'URL path', 'wiki', 'urlpath'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = articleplugin AND "django_content_type"."app_label" = wiki ); args=('articleplugin', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (article plugin, wiki, articleplugin); args=[u'article plugin', 'wiki', 'articleplugin'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = reusableplugin AND "django_content_type"."app_label" = wiki ); args=('reusableplugin', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (reusable plugin, wiki, reusableplugin); args=[u'reusable plugin', 'wiki', 'reusableplugin'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = simpleplugin AND "django_content_type"."app_label" = wiki ); args=('simpleplugin', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (simple plugin, wiki, simpleplugin); args=[u'simple plugin', 'wiki', 'simpleplugin'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = revisionplugin AND "django_content_type"."app_label" = wiki ); args=('revisionplugin', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (revision plugin, wiki, revisionplugin); args=[u'revision plugin', 'wiki', 'revisionplugin'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = revisionpluginrevision AND "django_content_type"."app_label" = wiki ); args=('revisionpluginrevision', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (revision plugin revision, wiki, revisionpluginrevision); args=[u'revision plugin revision', 'wiki', 'revisionpluginrevision'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = articlesubscription AND "django_content_type"."app_label" = wiki ); args=('articlesubscription', 'wiki') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (article subscription, wiki, articlesubscription); args=[u'article subscription', 'wiki', 'articlesubscription'] | |
DEBUG:django.db.backends:(0.000) 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 (76, 77, 78, 79, 80, 81, 82, 83, 84, 85) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(76, 77, 78, 79, 80, 81, 82, 83, 84, 85) | |
DEBUG:django.db.backends:(0.001) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add article AS "name", 76 AS "content_type_id", add_article AS "codename" UNION ALL SELECT Can change article, 76, change_article UNION ALL SELECT Can delete article, 76, delete_article UNION ALL SELECT Can edit all articles and lock/unlock/restore, 76, moderate UNION ALL SELECT Can change ownership of any article, 76, assign UNION ALL SELECT Can assign permissions to other users, 76, grant UNION ALL SELECT Can add Article for object, 77, add_articleforobject UNION ALL SELECT Can change Article for object, 77, change_articleforobject UNION ALL SELECT Can delete Article for object, 77, delete_articleforobject UNION ALL SELECT Can add article revision, 78, add_articlerevision UNION ALL SELECT Can change article revision, 78, change_articlerevision UNION ALL SELECT Can delete article revision, 78, delete_articlerevision UNION ALL SELECT Can add URL path, 79, add_urlpath UNION ALL SELECT Can change URL path, 79, change_urlpath UNION ALL SELECT Can delete URL path, 79, delete_urlpath UNION ALL SELECT Can add article plugin, 80, add_articleplugin UNION ALL SELECT Can change article plugin, 80, change_articleplugin UNION ALL SELECT Can delete article plugin, 80, delete_articleplugin UNION ALL SELECT Can add reusable plugin, 81, add_reusableplugin UNION ALL SELECT Can change reusable plugin, 81, change_reusableplugin UNION ALL SELECT Can delete reusable plugin, 81, delete_reusableplugin UNION ALL SELECT Can add simple plugin, 82, add_simpleplugin UNION ALL SELECT Can change simple plugin, 82, change_simpleplugin UNION ALL SELECT Can delete simple plugin, 82, delete_simpleplugin UNION ALL SELECT Can add revision plugin, 83, add_revisionplugin UNION ALL SELECT Can change revision plugin, 83, change_revisionplugin UNION ALL SELECT Can delete revision plugin, 83, delete_revisionplugin UNION ALL SELECT Can add revision plugin revision, 84, add_revisionpluginrevision UNION ALL SELECT Can change revision plugin revision, 84, change_revisionpluginrevision UNION ALL SELECT Can delete revision plugin revision, 84, delete_revisionpluginrevision UNION ALL SELECT Can add article subscription, 85, add_articlesubscription UNION ALL SELECT Can change article subscription, 85, change_articlesubscription UNION ALL SELECT Can delete article subscription, 85, delete_articlesubscription; args=(u'Can add article', 76, u'add_article', u'Can change article', 76, u'change_article', u'Can delete article', 76, u'delete_article', 'Can edit all articles and lock/unlock/restore', 76, 'moderate', 'Can change ownership of any article', 76, 'assign', 'Can assign permissions to other users', 76, 'grant', u'Can add Article for object', 77, u'add_articleforobject', u'Can change Article for object', 77, u'change_articleforobject', u'Can delete Article for object', 77, u'delete_articleforobject', u'Can add article revision', 78, u'add_articlerevision', u'Can change article revision', 78, u'change_articlerevision', u'Can delete article revision', 78, u'delete_articlerevision', u'Can add URL path', 79, u'add_urlpath', u'Can change URL path', 79, u'change_urlpath', u'Can delete URL path', 79, u'delete_urlpath', u'Can add article plugin', 80, u'add_articleplugin', u'Can change article plugin', 80, u'change_articleplugin', u'Can delete article plugin', 80, u'delete_articleplugin', u'Can add reusable plugin', 81, u'add_reusableplugin', u'Can change reusable plugin', 81, u'change_reusableplugin', u'Can delete reusable plugin', 81, u'delete_reusableplugin', u'Can add simple plugin', 82, u'add_simpleplugin', u'Can change simple plugin', 82, u'change_simpleplugin', u'Can delete simple plugin', 82, u'delete_simpleplugin', u'Can add revision plugin', 83, u'add_revisionplugin', u'Can change revision plugin', 83, u'change_revisionplugin', u'Can delete revision plugin', 83, u'delete_revisionplugin', u'Can add revision plugin revision', 84, u'add_revisionpluginrevision', u'Can change revision plugin revision', 84, u'change_revisionpluginrevision', u'Can delete revision plugin revision', 84, u'delete_revisionpluginrevision', u'Can add article subscription', 85, u'add_articlesubscription', u'Can change article subscription', 85, u'change_articlesubscription', u'Can delete article subscription', 85, u'delete_articlesubscription') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = wiki ORDER BY "django_content_type"."name" ASC; args=('wiki',) | |
- Loading initial data for wiki. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for django_notify: | |
- Migrating forwards to 0001_initial. | |
> django_notify:0001_initial | |
DEBUG:south:execute "CREATE TABLE "notify_notificationtype" ("key" varchar(128) NOT NULL PRIMARY KEY, "label" varchar(128) NULL, "content_type_id" integer NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "notify_notificationtype" ("key" varchar(128) NOT NULL PRIMARY KEY, "label" varchar(128) NULL, "content_type_id" integer NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "notify_settings" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "interval" smallint NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "notify_settings" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "interval" smallint NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "notify_subscription" ("id" integer NOT NULL PRIMARY KEY, "settings_id" integer NOT NULL, "notification_type_id" varchar(128) NOT NULL, "object_id" varchar(64) NULL, "send_emails" bool NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "notify_subscription" ("id" integer NOT NULL PRIMARY KEY, "settings_id" integer NOT NULL, "notification_type_id" varchar(128) NOT NULL, "object_id" varchar(64) NULL, "send_emails" bool NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "notify_notification" ("id" integer NOT NULL PRIMARY KEY, "subscription_id" integer NULL, "message" text NOT NULL, "url" varchar(200) NULL, "is_viewed" bool NOT NULL, "is_emailed" bool NOT NULL, "created" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "notify_notification" ("id" integer NOT NULL PRIMARY KEY, "subscription_id" integer NULL, "message" text NOT NULL, "url" varchar(200) NULL, "is_viewed" bool NOT NULL, "is_emailed" bool NOT NULL, "created" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "notify_notificationtype_e4470c6e" ON "notify_notificationtype" ("content_type_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notify_notificationtype_e4470c6e" ON "notify_notificationtype" ("content_type_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notify_settings_fbfc09f1" ON "notify_settings" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notify_settings_fbfc09f1" ON "notify_settings" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notify_subscription_83326d99" ON "notify_subscription" ("settings_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notify_subscription_83326d99" ON "notify_subscription" ("settings_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notify_subscription_9955f091" ON "notify_subscription" ("notification_type_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notify_subscription_9955f091" ON "notify_subscription" ("notification_type_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notify_notification_104f5ac1" ON "notify_notification" ("subscription_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notify_notification_104f5ac1" ON "notify_notification" ("subscription_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = django_notify AND "south_migrationhistory"."migration" = 0001_initial ); args=('django_notify', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (django_notify, 0001_initial, 2015-05-14 20:31:08.430739); args=['django_notify', '0001_initial', u'2015-05-14 20:31:08.430739'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = notificationtype AND "django_content_type"."app_label" = django_notify ); args=('notificationtype', 'django_notify') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (type, django_notify, notificationtype); args=[u'type', 'django_notify', 'notificationtype'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = settings AND "django_content_type"."app_label" = django_notify ); args=('settings', 'django_notify') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (settings, django_notify, settings); args=[u'settings', 'django_notify', 'settings'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = subscription AND "django_content_type"."app_label" = django_notify ); args=('subscription', 'django_notify') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (subscription, django_notify, subscription); args=[u'subscription', 'django_notify', 'subscription'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = notification AND "django_content_type"."app_label" = django_notify ); args=('notification', 'django_notify') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (notification, django_notify, notification); args=[u'notification', 'django_notify', 'notification'] | |
DEBUG:django.db.backends:(0.000) 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 (88, 89, 86, 87) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(88, 89, 86, 87) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add type AS "name", 86 AS "content_type_id", add_notificationtype AS "codename" UNION ALL SELECT Can change type, 86, change_notificationtype UNION ALL SELECT Can delete type, 86, delete_notificationtype UNION ALL SELECT Can add settings, 87, add_settings UNION ALL SELECT Can change settings, 87, change_settings UNION ALL SELECT Can delete settings, 87, delete_settings UNION ALL SELECT Can add subscription, 88, add_subscription UNION ALL SELECT Can change subscription, 88, change_subscription UNION ALL SELECT Can delete subscription, 88, delete_subscription UNION ALL SELECT Can add notification, 89, add_notification UNION ALL SELECT Can change notification, 89, change_notification UNION ALL SELECT Can delete notification, 89, delete_notification; args=(u'Can add type', 86, u'add_notificationtype', u'Can change type', 86, u'change_notificationtype', u'Can delete type', 86, u'delete_notificationtype', u'Can add settings', 87, u'add_settings', u'Can change settings', 87, u'change_settings', u'Can delete settings', 87, u'delete_settings', u'Can add subscription', 88, u'add_subscription', u'Can change subscription', 88, u'change_subscription', u'Can delete subscription', 88, u'delete_subscription', u'Can add notification', 89, u'add_notification', u'Can change notification', 89, u'change_notification', u'Can delete notification', 89, u'delete_notification') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = django_notify ORDER BY "django_content_type"."name" ASC; args=('django_notify',) | |
- Loading initial data for django_notify. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.004) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for notifications: | |
- Migrating forwards to 0001_initial. | |
> notifications:0001_initial | |
DEBUG:south:execute "CREATE TABLE "notifications_articlesubscription" ("subscription_ptr_id" integer NOT NULL UNIQUE, "articleplugin_ptr_id" integer NOT NULL PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "notifications_articlesubscription" ("subscription_ptr_id" integer NOT NULL UNIQUE, "articleplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = notifications AND "south_migrationhistory"."migration" = 0001_initial ); args=('notifications', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (notifications, 0001_initial, 2015-05-14 20:31:08.725323); args=['notifications', '0001_initial', u'2015-05-14 20:31:08.725323'] | |
- Loading initial data for notifications. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for foldit: | |
- Migrating forwards to 0001_initial. | |
> foldit:0001_initial | |
DEBUG:south:execute "CREATE TABLE "foldit_score" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "unique_user_id" varchar(50) NOT NULL, "puzzle_id" integer NOT NULL, "best_score" real NOT NULL, "current_score" real NOT NULL, "score_version" integer NOT NULL, "created" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "foldit_score" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "unique_user_id" varchar(50) NOT NULL, "puzzle_id" integer NOT NULL, "best_score" real NOT NULL, "current_score" real NOT NULL, "score_version" integer NOT NULL, "created" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "foldit_puzzlecomplete" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "unique_user_id" varchar(50) NOT NULL, "puzzle_id" integer NOT NULL, "puzzle_set" integer NOT NULL, "puzzle_subset" integer NOT NULL, "created" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "foldit_puzzlecomplete" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "unique_user_id" varchar(50) NOT NULL, "puzzle_id" integer NOT NULL, "puzzle_set" integer NOT NULL, "puzzle_subset" integer NOT NULL, "created" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "foldit_puzzlecomplete_user_id__puzzle_id__puzzle_set__puzzle_subset" ON "foldit_puzzlecomplete"("user_id", "puzzle_id", "puzzle_set", "puzzle_subset");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "foldit_puzzlecomplete_user_id__puzzle_id__puzzle_set__puzzle_subset" ON "foldit_puzzlecomplete"("user_id", "puzzle_id", "puzzle_set", "puzzle_subset");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_score_fbfc09f1" ON "foldit_score" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_score_fbfc09f1" ON "foldit_score" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_score_8027477e" ON "foldit_score" ("unique_user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_score_8027477e" ON "foldit_score" ("unique_user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_score_3624c060" ON "foldit_score" ("best_score");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_score_3624c060" ON "foldit_score" ("best_score");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_score_b4627792" ON "foldit_score" ("current_score");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_score_b4627792" ON "foldit_score" ("current_score");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_puzzlecomplete_fbfc09f1" ON "foldit_puzzlecomplete" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_puzzlecomplete_fbfc09f1" ON "foldit_puzzlecomplete" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_puzzlecomplete_8027477e" ON "foldit_puzzlecomplete" ("unique_user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_puzzlecomplete_8027477e" ON "foldit_puzzlecomplete" ("unique_user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_puzzlecomplete_4798a2b8" ON "foldit_puzzlecomplete" ("puzzle_set");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_puzzlecomplete_4798a2b8" ON "foldit_puzzlecomplete" ("puzzle_set");; args=[] | |
DEBUG:south:execute "CREATE INDEX "foldit_puzzlecomplete_59f06bcd" ON "foldit_puzzlecomplete" ("puzzle_subset");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "foldit_puzzlecomplete_59f06bcd" ON "foldit_puzzlecomplete" ("puzzle_subset");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = foldit AND "south_migrationhistory"."migration" = 0001_initial ); args=('foldit', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (foldit, 0001_initial, 2015-05-14 20:31:09.239155); args=['foldit', '0001_initial', u'2015-05-14 20:31:09.239155'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = score AND "django_content_type"."app_label" = foldit ); args=('score', 'foldit') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (score, foldit, score); args=[u'score', 'foldit', 'score'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = puzzlecomplete AND "django_content_type"."app_label" = foldit ); args=('puzzlecomplete', 'foldit') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (puzzle complete, foldit, puzzlecomplete); args=[u'puzzle complete', 'foldit', 'puzzlecomplete'] | |
DEBUG:django.db.backends:(0.000) 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 (90, 91) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(90, 91) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add score AS "name", 90 AS "content_type_id", add_score AS "codename" UNION ALL SELECT Can change score, 90, change_score UNION ALL SELECT Can delete score, 90, delete_score UNION ALL SELECT Can add puzzle complete, 91, add_puzzlecomplete UNION ALL SELECT Can change puzzle complete, 91, change_puzzlecomplete UNION ALL SELECT Can delete puzzle complete, 91, delete_puzzlecomplete; args=(u'Can add score', 90, u'add_score', u'Can change score', 90, u'change_score', u'Can delete score', 90, u'delete_score', u'Can add puzzle complete', 91, u'add_puzzlecomplete', u'Can change puzzle complete', 91, u'change_puzzlecomplete', u'Can delete puzzle complete', 91, u'delete_puzzlecomplete') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = foldit ORDER BY "django_content_type"."name" ASC; args=('foldit',) | |
- Loading initial data for foldit. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for django_comment_client: | |
- Migrating forwards to 0001_initial. | |
> django_comment_client:0001_initial | |
DEBUG:south:execute "CREATE TABLE "django_comment_client_role" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "course_id" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "django_comment_client_role" ("id" integer NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "course_id" varchar(255) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "django_comment_client_role_users" ("id" integer NOT NULL PRIMARY KEY, "role_id" integer NOT NULL, "user_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_comment_client_role_users" ("id" integer NOT NULL PRIMARY KEY, "role_id" integer NOT NULL, "user_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "django_comment_client_role_users_role_id__user_id" ON "django_comment_client_role_users"("role_id", "user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "django_comment_client_role_users_role_id__user_id" ON "django_comment_client_role_users"("role_id", "user_id");; args=[] | |
DEBUG:south:execute "CREATE TABLE "django_comment_client_permission" ("name" varchar(30) NOT NULL PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_comment_client_permission" ("name" varchar(30) NOT NULL PRIMARY KEY); args=[] | |
DEBUG:south:execute "CREATE TABLE "django_comment_client_permission_roles" ("id" integer NOT NULL PRIMARY KEY, "permission_id" varchar(30) NOT NULL, "role_id" integer NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "django_comment_client_permission_roles" ("id" integer NOT NULL PRIMARY KEY, "permission_id" varchar(30) NOT NULL, "role_id" integer NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "django_comment_client_permission_roles_permission_id__role_id" ON "django_comment_client_permission_roles"("permission_id", "role_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "django_comment_client_permission_roles_permission_id__role_id" ON "django_comment_client_permission_roles"("permission_id", "role_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "django_comment_client_role_ff48d8e5" ON "django_comment_client_role" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_comment_client_role_ff48d8e5" ON "django_comment_client_role" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "django_comment_client_role_users_bf07f040" ON "django_comment_client_role_users" ("role_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_comment_client_role_users_bf07f040" ON "django_comment_client_role_users" ("role_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "django_comment_client_role_users_fbfc09f1" ON "django_comment_client_role_users" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_comment_client_role_users_fbfc09f1" ON "django_comment_client_role_users" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "django_comment_client_permission_roles_1e014c8f" ON "django_comment_client_permission_roles" ("permission_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_comment_client_permission_roles_1e014c8f" ON "django_comment_client_permission_roles" ("permission_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "django_comment_client_permission_roles_bf07f040" ON "django_comment_client_permission_roles" ("role_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "django_comment_client_permission_roles_bf07f040" ON "django_comment_client_permission_roles" ("role_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = django_comment_client AND "south_migrationhistory"."migration" = 0001_initial ); args=('django_comment_client', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (django_comment_client, 0001_initial, 2015-05-14 20:31:09.522142); args=['django_comment_client', '0001_initial', u'2015-05-14 20:31:09.522142'] | |
- Loading initial data for django_comment_client. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for django_comment_common: | |
- Migrating forwards to 0001_initial. | |
> django_comment_common:0001_initial | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = django_comment_common AND "south_migrationhistory"."migration" = 0001_initial ); args=('django_comment_common', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (django_comment_common, 0001_initial, 2015-05-14 20:31:09.774326); args=['django_comment_common', '0001_initial', u'2015-05-14 20:31:09.774326'] | |
- Loading initial data for django_comment_common. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.004) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for notes: | |
- Migrating forwards to 0001_initial. | |
> notes:0001_initial | |
DEBUG:south:execute "CREATE TABLE "notes_note" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "uri" varchar(255) NOT NULL, "text" text NOT NULL, "quote" text NOT NULL, "range_start" varchar(2048) NOT NULL, "range_start_offset" integer NOT NULL, "range_end" varchar(2048) NOT NULL, "range_end_offset" integer NOT NULL, "tags" text NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "notes_note" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "course_id" varchar(255) NOT NULL, "uri" varchar(255) NOT NULL, "text" text NOT NULL, "quote" text NOT NULL, "range_start" varchar(2048) NOT NULL, "range_start_offset" integer NOT NULL, "range_end" varchar(2048) NOT NULL, "range_end_offset" integer NOT NULL, "tags" text NOT NULL, "created" datetime NULL, "updated" datetime NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "notes_note_fbfc09f1" ON "notes_note" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notes_note_fbfc09f1" ON "notes_note" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notes_note_ff48d8e5" ON "notes_note" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notes_note_ff48d8e5" ON "notes_note" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notes_note_a9794fa" ON "notes_note" ("uri");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notes_note_a9794fa" ON "notes_note" ("uri");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notes_note_3216ff68" ON "notes_note" ("created");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notes_note_3216ff68" ON "notes_note" ("created");; args=[] | |
DEBUG:south:execute "CREATE INDEX "notes_note_8aac229" ON "notes_note" ("updated");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "notes_note_8aac229" ON "notes_note" ("updated");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = notes AND "south_migrationhistory"."migration" = 0001_initial ); args=('notes', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (notes, 0001_initial, 2015-05-14 20:31:10.291568); args=['notes', '0001_initial', u'2015-05-14 20:31:10.291568'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = note AND "django_content_type"."app_label" = notes ); args=('note', 'notes') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (note, notes, note); args=[u'note', 'notes', 'note'] | |
DEBUG:django.db.backends:(0.000) 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 (92) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(92,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add note AS "name", 92 AS "content_type_id", add_note AS "codename" UNION ALL SELECT Can change note, 92, change_note UNION ALL SELECT Can delete note, 92, delete_note; args=(u'Can add note', 92, u'add_note', u'Can change note', 92, u'change_note', u'Can delete note', 92, u'delete_note') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = notes ORDER BY "django_content_type"."name" ASC; args=('notes',) | |
- Loading initial data for notes. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for splash: | |
- Migrating forwards to 0002_auto__add_field_splashconfig_unaffected_url_paths. | |
> splash:0001_initial | |
DEBUG:south:execute "CREATE TABLE "splash_splashconfig" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "cookie_name" text NOT NULL, "cookie_allowed_values" text NOT NULL, "unaffected_usernames" text NOT NULL, "redirect_url" varchar(200) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "splash_splashconfig" ("id" integer NOT NULL PRIMARY KEY, "change_date" datetime NOT NULL, "changed_by_id" integer NULL, "enabled" bool NOT NULL, "cookie_name" text NOT NULL, "cookie_allowed_values" text NOT NULL, "unaffected_usernames" text NOT NULL, "redirect_url" varchar(200) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "splash_splashconfig_16905482" ON "splash_splashconfig" ("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "splash_splashconfig_16905482" ON "splash_splashconfig" ("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = splash AND "south_migrationhistory"."migration" = 0001_initial ); args=('splash', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (splash, 0001_initial, 2015-05-14 20:31:10.550356); args=['splash', '0001_initial', u'2015-05-14 20:31:10.550356'] | |
> splash:0002_auto__add_field_splashconfig_unaffected_url_paths | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("splash_splashconfig"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("splash_splashconfig"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("splash_splashconfig"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("splash_splashconfig_16905482"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("splash_splashconfig"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_splash_splashconfig" ("unaffected_url_paths" text NOT NULL, "cookie_name" text NOT NULL, "enabled" bool NOT NULL, "cookie_allowed_values" text NOT NULL, "unaffected_usernames" text NOT NULL, "changed_by_id" integer, "redirect_url" varchar(200) NOT NULL, "change_date" datetime NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_splash_splashconfig" ("unaffected_url_paths" text NOT NULL, "cookie_name" text NOT NULL, "enabled" bool NOT NULL, "cookie_allowed_values" text NOT NULL, "unaffected_usernames" text NOT NULL, "changed_by_id" integer, "redirect_url" varchar(200) NOT NULL, "change_date" datetime NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("splash_splashconfig"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_splash_splashconfig"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_splash_splashconfig" ("id", "change_date", "changed_by_id", "enabled", "cookie_name", "cookie_allowed_values", "unaffected_usernames", "redirect_url", "unaffected_url_paths") SELECT "id", "change_date", "changed_by_id", "enabled", "cookie_name", "cookie_allowed_values", "unaffected_usernames", "redirect_url", '/heartbeat' as "unaffected_url_paths" FROM "splash_splashconfig";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_splash_splashconfig" ("id", "change_date", "changed_by_id", "enabled", "cookie_name", "cookie_allowed_values", "unaffected_usernames", "redirect_url", "unaffected_url_paths") SELECT "id", "change_date", "changed_by_id", "enabled", "cookie_name", "cookie_allowed_values", "unaffected_usernames", "redirect_url", '/heartbeat' as "unaffected_url_paths" FROM "splash_splashconfig";; args=[] | |
DEBUG:south:execute "DROP TABLE "splash_splashconfig";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "splash_splashconfig";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_splash_splashconfig" RENAME TO "splash_splashconfig";" with params "[]" | |
DEBUG:django.db.backends:(0.003) ALTER TABLE "_south_new_splash_splashconfig" RENAME TO "splash_splashconfig";; args=[] | |
DEBUG:south:execute "CREATE INDEX "splash_splashconfig_16905482" ON "splash_splashconfig"("changed_by_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "splash_splashconfig_16905482" ON "splash_splashconfig"("changed_by_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = splash AND "south_migrationhistory"."migration" = 0002_auto__add_field_splashconfig_unaffected_url_paths ); args=('splash', '0002_auto__add_field_splashconfig_unaffected_url_paths') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (splash, 0002_auto__add_field_splashconfig_unaffected_url_paths, 2015-05-14 20:31:10.574621); args=['splash', '0002_auto__add_field_splashconfig_unaffected_url_paths', u'2015-05-14 20:31:10.574621'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = splashconfig AND "django_content_type"."app_label" = splash ); args=('splashconfig', 'splash') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (splash config, splash, splashconfig); args=[u'splash config', 'splash', 'splashconfig'] | |
DEBUG:django.db.backends:(0.000) 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 (93) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(93,) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add splash config AS "name", 93 AS "content_type_id", add_splashconfig AS "codename" UNION ALL SELECT Can change splash config, 93, change_splashconfig UNION ALL SELECT Can delete splash config, 93, delete_splashconfig; args=(u'Can add splash config', 93, u'add_splashconfig', u'Can change splash config', 93, u'change_splashconfig', u'Can delete splash config', 93, u'delete_splashconfig') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = splash ORDER BY "django_content_type"."name" ASC; args=('splash',) | |
- Loading initial data for splash. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.003) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for user_api: | |
- Migrating forwards to 0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us. | |
> user_api:0001_initial | |
DEBUG:south:execute "CREATE TABLE "user_api_userpreference" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "user_api_userpreference" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "user_api_userpreference_user_id__key" ON "user_api_userpreference"("user_id", "key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "user_api_userpreference_user_id__key" ON "user_api_userpreference"("user_id", "key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_userpreference_fbfc09f1" ON "user_api_userpreference" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_userpreference_fbfc09f1" ON "user_api_userpreference" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_userpreference_45544485" ON "user_api_userpreference" ("key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_userpreference_45544485" ON "user_api_userpreference" ("key");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = user_api AND "south_migrationhistory"."migration" = 0001_initial ); args=('user_api', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (user_api, 0001_initial, 2015-05-14 20:31:10.851018); args=['user_api', '0001_initial', u'2015-05-14 20:31:10.851018'] | |
> user_api:0002_auto__add_usercoursetags__add_unique_usercoursetags_user_course_id_key | |
DEBUG:south:execute "CREATE TABLE "user_api_usercoursetags" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "value" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "user_api_usercoursetags" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "course_id" varchar(255) NOT NULL, "value" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "user_api_usercoursetags_user_id__course_id__key" ON "user_api_usercoursetags"("user_id", "course_id", "key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "user_api_usercoursetags_user_id__course_id__key" ON "user_api_usercoursetags"("user_id", "course_id", "key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_fbfc09f1" ON "user_api_usercoursetags" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_usercoursetags_fbfc09f1" ON "user_api_usercoursetags" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_45544485" ON "user_api_usercoursetags" ("key");" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE INDEX "user_api_usercoursetags_45544485" ON "user_api_usercoursetags" ("key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_ff48d8e5" ON "user_api_usercoursetags" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_usercoursetags_ff48d8e5" ON "user_api_usercoursetags" ("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = user_api AND "south_migrationhistory"."migration" = 0002_auto__add_usercoursetags__add_unique_usercoursetags_user_course_id_key ); args=('user_api', '0002_auto__add_usercoursetags__add_unique_usercoursetags_user_course_id_key') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (user_api, 0002_auto__add_usercoursetags__add_unique_usercoursetags_user_course_id_key, 2015-05-14 20:31:10.876854); args=['user_api', '0002_auto__add_usercoursetags__add_unique_usercoursetags_user_course_id_key', u'2015-05-14 20:31:10.876854'] | |
> user_api:0003_rename_usercoursetags | |
DEBUG:south:execute "ALTER TABLE "user_api_usercoursetags" RENAME TO "user_api_usercoursetag";" with params "[]" | |
DEBUG:django.db.backends:(0.002) ALTER TABLE "user_api_usercoursetags" RENAME TO "user_api_usercoursetag";; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = user_api AND "south_migrationhistory"."migration" = 0003_rename_usercoursetags ); args=('user_api', '0003_rename_usercoursetags') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (user_api, 0003_rename_usercoursetags, 2015-05-14 20:31:10.892443); args=['user_api', '0003_rename_usercoursetags', u'2015-05-14 20:31:10.892443'] | |
> user_api:0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us | |
DEBUG:south:execute "CREATE TABLE "user_api_userorgtag" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "org" varchar(255) NOT NULL, "value" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "user_api_userorgtag" ("id" integer NOT NULL PRIMARY KEY, "created" datetime NOT NULL, "modified" datetime NOT NULL, "user_id" integer NOT NULL, "key" varchar(255) NOT NULL, "org" varchar(255) NOT NULL, "value" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "user_api_userorgtag_user_id__org__key" ON "user_api_userorgtag"("user_id", "org", "key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "user_api_userorgtag_user_id__org__key" ON "user_api_userorgtag"("user_id", "org", "key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_userorgtag_user_id_694f9e3322120c6f" ON "user_api_userorgtag" ("user_id","org","key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_userorgtag_user_id_694f9e3322120c6f" ON "user_api_userorgtag" ("user_id","org","key");; args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("user_api_usercoursetag"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("user_api_usercoursetag"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("user_api_usercoursetags_user_id__course_id__key"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("user_api_usercoursetag"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("user_api_usercoursetags_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("user_api_usercoursetags_45544485"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("user_api_usercoursetags_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("user_api_usercoursetags_user_id__course_id__key"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("user_api_usercoursetag"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_user_api_usercoursetag" ("course_id" varchar(255) NOT NULL, "value" text NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "key" varchar(255) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_user_api_usercoursetag" ("course_id" varchar(255) NOT NULL, "value" text NOT NULL, "user_id" integer NOT NULL, "id" integer PRIMARY KEY, "key" varchar(255) NOT NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("user_api_usercoursetag"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_user_api_usercoursetag"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_user_api_usercoursetag" ("id", "user_id", "key", "course_id", "value") SELECT "id", "user_id", "key", "course_id", "value" FROM "user_api_usercoursetag";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_user_api_usercoursetag" ("id", "user_id", "key", "course_id", "value") SELECT "id", "user_id", "key", "course_id", "value" FROM "user_api_usercoursetag";; args=[] | |
DEBUG:south:execute "DROP TABLE "user_api_usercoursetag";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "user_api_usercoursetag";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_user_api_usercoursetag" RENAME TO "user_api_usercoursetag";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_user_api_usercoursetag" RENAME TO "user_api_usercoursetag";; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_ff48d8e5" ON "user_api_usercoursetag"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_usercoursetags_ff48d8e5" ON "user_api_usercoursetag"("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_45544485" ON "user_api_usercoursetag"("key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_usercoursetags_45544485" ON "user_api_usercoursetag"("key");; args=[] | |
DEBUG:south:execute "CREATE INDEX "user_api_usercoursetags_fbfc09f1" ON "user_api_usercoursetag"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "user_api_usercoursetags_fbfc09f1" ON "user_api_usercoursetag"("user_id");; args=[] | |
DEBUG:south:execute "CREATE UNIQUE INDEX "user_api_usercoursetags_user_id__course_id__key" ON "user_api_usercoursetag"("user_id", "course_id", "key");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE UNIQUE INDEX "user_api_usercoursetags_user_id__course_id__key" ON "user_api_usercoursetag"("user_id", "course_id", "key");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = user_api AND "south_migrationhistory"."migration" = 0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us ); args=('user_api', '0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (user_api, 0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us, 2015-05-14 20:31:10.929123); args=['user_api', '0004_auto__add_userorgtag__add_unique_userorgtag_user_org_key__chg_field_us', u'2015-05-14 20:31:10.929123'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = userpreference AND "django_content_type"."app_label" = user_api ); args=('userpreference', 'user_api') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user preference, user_api, userpreference); args=[u'user preference', 'user_api', 'userpreference'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = usercoursetag AND "django_content_type"."app_label" = user_api ); args=('usercoursetag', 'user_api') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user course tag, user_api, usercoursetag); args=[u'user course tag', 'user_api', 'usercoursetag'] | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = userorgtag AND "django_content_type"."app_label" = user_api ); args=('userorgtag', 'user_api') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "django_content_type" ("name", "app_label", "model") VALUES (user org tag, user_api, userorgtag); args=[u'user org tag', 'user_api', 'userorgtag'] | |
DEBUG:django.db.backends:(0.000) 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 (96, 94, 95) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(96, 94, 95) | |
DEBUG:django.db.backends:(0.000) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") SELECT Can add user preference AS "name", 94 AS "content_type_id", add_userpreference AS "codename" UNION ALL SELECT Can change user preference, 94, change_userpreference UNION ALL SELECT Can delete user preference, 94, delete_userpreference UNION ALL SELECT Can add user course tag, 95, add_usercoursetag UNION ALL SELECT Can change user course tag, 95, change_usercoursetag UNION ALL SELECT Can delete user course tag, 95, delete_usercoursetag UNION ALL SELECT Can add user org tag, 96, add_userorgtag UNION ALL SELECT Can change user org tag, 96, change_userorgtag UNION ALL SELECT Can delete user org tag, 96, delete_userorgtag; args=(u'Can add user preference', 94, u'add_userpreference', u'Can change user preference', 94, u'change_userpreference', u'Can delete user preference', 94, u'delete_userpreference', u'Can add user course tag', 95, u'add_usercoursetag', u'Can change user course tag', 95, u'change_usercoursetag', u'Can delete user course tag', 95, u'delete_usercoursetag', u'Can add user org tag', 96, u'add_userorgtag', u'Can change user org tag', 96, u'change_userorgtag', u'Can delete user org tag', 96, u'delete_userorgtag') | |
DEBUG:django.db.backends:(0.000) SELECT "django_content_type"."id", "django_content_type"."name", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = user_api ORDER BY "django_content_type"."name" ASC; args=('user_api',) | |
- Loading initial data for user_api. | |
Installed 0 object(s) from 0 fixture(s) | |
DEBUG:django.db.backends:(0.005) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE "south_migrationhistory"."applied" IS NOT NULL ORDER BY "south_migrationhistory"."applied" ASC; args=() | |
Running migrations for shoppingcart: | |
- Migrating forwards to 0027_add_invoice_history. | |
> shoppingcart:0001_initial | |
DEBUG:south:execute "CREATE TABLE "shoppingcart_order" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "currency" varchar(8) NOT NULL, "status" varchar(32) NOT NULL, "purchase_time" datetime NULL, "bill_to_first" varchar(64) NOT NULL, "bill_to_last" varchar(64) NOT NULL, "bill_to_street1" varchar(128) NOT NULL, "bill_to_street2" varchar(128) NOT NULL, "bill_to_city" varchar(64) NOT NULL, "bill_to_state" varchar(8) NOT NULL, "bill_to_postalcode" varchar(16) NOT NULL, "bill_to_country" varchar(64) NOT NULL, "bill_to_ccnum" varchar(8) NOT NULL, "bill_to_cardtype" varchar(32) NOT NULL, "processor_reply_dump" text NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.003) CREATE TABLE "shoppingcart_order" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "currency" varchar(8) NOT NULL, "status" varchar(32) NOT NULL, "purchase_time" datetime NULL, "bill_to_first" varchar(64) NOT NULL, "bill_to_last" varchar(64) NOT NULL, "bill_to_street1" varchar(128) NOT NULL, "bill_to_street2" varchar(128) NOT NULL, "bill_to_city" varchar(64) NOT NULL, "bill_to_state" varchar(8) NOT NULL, "bill_to_postalcode" varchar(16) NOT NULL, "bill_to_country" varchar(64) NOT NULL, "bill_to_ccnum" varchar(8) NOT NULL, "bill_to_cardtype" varchar(32) NOT NULL, "processor_reply_dump" text NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "shoppingcart_orderitem" ("id" integer NOT NULL PRIMARY KEY, "order_id" integer NOT NULL, "user_id" integer NOT NULL, "status" varchar(32) NOT NULL, "qty" integer NOT NULL, "unit_cost" decimal NOT NULL, "line_cost" decimal NOT NULL, "line_desc" varchar(1024) NOT NULL, "currency" varchar(8) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "shoppingcart_orderitem" ("id" integer NOT NULL PRIMARY KEY, "order_id" integer NOT NULL, "user_id" integer NOT NULL, "status" varchar(32) NOT NULL, "qty" integer NOT NULL, "unit_cost" decimal NOT NULL, "line_cost" decimal NOT NULL, "line_desc" varchar(1024) NOT NULL, "currency" varchar(8) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "shoppingcart_paidcourseregistration" ("orderitem_ptr_id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "shoppingcart_paidcourseregistration" ("orderitem_ptr_id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE TABLE "shoppingcart_certificateitem" ("orderitem_ptr_id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL, "course_enrollment_id" integer NOT NULL, "mode" varchar(50) NOT NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "shoppingcart_certificateitem" ("orderitem_ptr_id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL, "course_enrollment_id" integer NOT NULL, "mode" varchar(50) NOT NULL); args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_order_fbfc09f1" ON "shoppingcart_order" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_order_fbfc09f1" ON "shoppingcart_order" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem" ("order_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem" ("order_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem" ("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem" ("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_paidcourseregistration_ff48d8e5" ON "shoppingcart_paidcourseregistration" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_paidcourseregistration_ff48d8e5" ON "shoppingcart_paidcourseregistration" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_certificateitem_ff48d8e5" ON "shoppingcart_certificateitem" ("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_certificateitem_ff48d8e5" ON "shoppingcart_certificateitem" ("course_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_certificateitem_9e513f0b" ON "shoppingcart_certificateitem" ("course_enrollment_id");" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE INDEX "shoppingcart_certificateitem_9e513f0b" ON "shoppingcart_certificateitem" ("course_enrollment_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_certificateitem_4160619e" ON "shoppingcart_certificateitem" ("mode");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_certificateitem_4160619e" ON "shoppingcart_certificateitem" ("mode");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = shoppingcart AND "south_migrationhistory"."migration" = 0001_initial ); args=('shoppingcart', '0001_initial') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (shoppingcart, 0001_initial, 2015-05-14 20:31:11.490599); args=['shoppingcart', '0001_initial', u'2015-05-14 20:31:11.490599'] | |
> shoppingcart:0002_auto__add_field_paidcourseregistration_mode | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_paidcourseregistration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_paidcourseregistration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_paidcourseregistration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_paidcourseregistration_ff48d8e5"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_paidcourseregistration"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_shoppingcart_paidcourseregistration" ("course_id" varchar(128) NOT NULL, "mode" varchar(50) NOT NULL, "orderitem_ptr_id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_shoppingcart_paidcourseregistration" ("course_id" varchar(128) NOT NULL, "mode" varchar(50) NOT NULL, "orderitem_ptr_id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_paidcourseregistration"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_shoppingcart_paidcourseregistration"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_shoppingcart_paidcourseregistration" ("orderitem_ptr_id", "course_id", "mode") SELECT "orderitem_ptr_id", "course_id", 'honor' as "mode" FROM "shoppingcart_paidcourseregistration";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_shoppingcart_paidcourseregistration" ("orderitem_ptr_id", "course_id", "mode") SELECT "orderitem_ptr_id", "course_id", 'honor' as "mode" FROM "shoppingcart_paidcourseregistration";; args=[] | |
DEBUG:south:execute "DROP TABLE "shoppingcart_paidcourseregistration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "shoppingcart_paidcourseregistration";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_shoppingcart_paidcourseregistration" RENAME TO "shoppingcart_paidcourseregistration";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_shoppingcart_paidcourseregistration" RENAME TO "shoppingcart_paidcourseregistration";; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_paidcourseregistration_ff48d8e5" ON "shoppingcart_paidcourseregistration"("course_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_paidcourseregistration_ff48d8e5" ON "shoppingcart_paidcourseregistration"("course_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = shoppingcart AND "south_migrationhistory"."migration" = 0002_auto__add_field_paidcourseregistration_mode ); args=('shoppingcart', '0002_auto__add_field_paidcourseregistration_mode') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (shoppingcart, 0002_auto__add_field_paidcourseregistration_mode, 2015-05-14 20:31:11.517595); args=['shoppingcart', '0002_auto__add_field_paidcourseregistration_mode', u'2015-05-14 20:31:11.517595'] | |
> shoppingcart:0003_auto__del_field_orderitem_line_cost | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_8337030b"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "order_id" integer NOT NULL, "line_desc" varchar(1024) NOT NULL, "qty" integer NOT NULL, "currency" varchar(8) NOT NULL, "unit_cost" decimal NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "order_id" integer NOT NULL, "line_desc" varchar(1024) NOT NULL, "qty" integer NOT NULL, "currency" varchar(8) NOT NULL, "unit_cost" decimal NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_shoppingcart_orderitem"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_shoppingcart_orderitem" ("id", "order_id", "user_id", "status", "qty", "unit_cost", "line_desc", "currency") SELECT "id", "order_id", "user_id", "status", "qty", "unit_cost", "line_desc", "currency" FROM "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_shoppingcart_orderitem" ("id", "order_id", "user_id", "status", "qty", "unit_cost", "line_desc", "currency") SELECT "id", "order_id", "user_id", "status", "qty", "unit_cost", "line_desc", "currency" FROM "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "DROP TABLE "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_shoppingcart_orderitem" RENAME TO "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.001) ALTER TABLE "_south_new_shoppingcart_orderitem" RENAME TO "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem"("user_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem"("order_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem"("order_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = shoppingcart AND "south_migrationhistory"."migration" = 0003_auto__del_field_orderitem_line_cost ); args=('shoppingcart', '0003_auto__del_field_orderitem_line_cost') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (shoppingcart, 0003_auto__del_field_orderitem_line_cost, 2015-05-14 20:31:11.548956); args=['shoppingcart', '0003_auto__del_field_orderitem_line_cost', u'2015-05-14 20:31:11.548956'] | |
> shoppingcart:0004_auto__add_field_orderitem_fulfilled_time | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_8337030b"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "fulfilled_time" datetime NULL, "order_id" integer NOT NULL, "unit_cost" decimal NOT NULL, "qty" integer NOT NULL, "currency" varchar(8) NOT NULL, "line_desc" varchar(1024) NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "fulfilled_time" datetime NULL, "order_id" integer NOT NULL, "unit_cost" decimal NOT NULL, "qty" integer NOT NULL, "currency" varchar(8) NOT NULL, "line_desc" varchar(1024) NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_shoppingcart_orderitem"); args=() | |
DEBUG:south:execute "INSERT INTO "_south_new_shoppingcart_orderitem" ("status", "user_id", "order_id", "line_desc", "qty", "currency", "unit_cost", "id") SELECT "status", "user_id", "order_id", "line_desc", "qty", "currency", "unit_cost", "id" FROM "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.000) INSERT INTO "_south_new_shoppingcart_orderitem" ("status", "user_id", "order_id", "line_desc", "qty", "currency", "unit_cost", "id") SELECT "status", "user_id", "order_id", "line_desc", "qty", "currency", "unit_cost", "id" FROM "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "DROP TABLE "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.001) DROP TABLE "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "ALTER TABLE "_south_new_shoppingcart_orderitem" RENAME TO "shoppingcart_orderitem";" with params "[]" | |
DEBUG:django.db.backends:(0.002) ALTER TABLE "_south_new_shoppingcart_orderitem" RENAME TO "shoppingcart_orderitem";; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem"("order_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_8337030b" ON "shoppingcart_orderitem"("order_id");; args=[] | |
DEBUG:south:execute "CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem"("user_id");" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE INDEX "shoppingcart_orderitem_fbfc09f1" ON "shoppingcart_orderitem"("user_id");; args=[] | |
DEBUG:django.db.backends:(0.000) SELECT "south_migrationhistory"."id", "south_migrationhistory"."app_name", "south_migrationhistory"."migration", "south_migrationhistory"."applied" FROM "south_migrationhistory" WHERE ("south_migrationhistory"."app_name" = shoppingcart AND "south_migrationhistory"."migration" = 0004_auto__add_field_orderitem_fulfilled_time ); args=('shoppingcart', '0004_auto__add_field_orderitem_fulfilled_time') | |
DEBUG:django.db.backends:(0.000) INSERT INTO "south_migrationhistory" ("app_name", "migration", "applied") VALUES (shoppingcart, 0004_auto__add_field_orderitem_fulfilled_time, 2015-05-14 20:31:11.581920); args=['shoppingcart', '0004_auto__add_field_orderitem_fulfilled_time', u'2015-05-14 20:31:11.581920'] | |
> shoppingcart:0005_auto__add_paidcourseregistrationannotation__add_field_orderitem_report | |
DEBUG:south:execute "CREATE TABLE "shoppingcart_paidcourseregistrationannotation" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL UNIQUE, "annotation" text NULL)" with params "[]" | |
DEBUG:django.db.backends:(0.002) CREATE TABLE "shoppingcart_paidcourseregistrationannotation" ("id" integer NOT NULL PRIMARY KEY, "course_id" varchar(128) NOT NULL UNIQUE, "annotation" text NULL); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_list("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_fbfc09f1"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA index_info("shoppingcart_orderitem_8337030b"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:south:execute "CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "currency" varchar(8) NOT NULL, "order_id" integer NOT NULL, "line_desc" varchar(1024) NOT NULL, "qty" integer NOT NULL, "fulfilled_time" datetime, "unit_cost" decimal NOT NULL, "report_comments" text NOT NULL, "id" integer PRIMARY KEY)" with params "[]" | |
DEBUG:django.db.backends:(0.001) CREATE TABLE "_south_new_shoppingcart_orderitem" ("status" varchar(32) NOT NULL, "user_id" integer NOT NULL, "currency" varchar(8) NOT NULL, "order_id" integer NOT NULL, "line_desc" varchar(1024) NOT NULL, "qty" integer NOT NULL, "fulfilled_time" datetime, "unit_cost" decimal NOT NULL, "report_comments" text NOT NULL, "id" integer PRIMARY KEY); args=[] | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("shoppingcart_orderitem"); args=() | |
DEBUG:django.db.backends:(0.000) PRAGMA table_info("_south_new_shoppingcart_orderitem"); args=() | |
D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment