(1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCoalescingPandaCanvasApiAuths (20131114150001)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "coalescing_panda_canvas_api_auths" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar(255), "api_domain" varchar(255), "api_token" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131114150001"]]  (0.7ms) commit transaction Migrating to CreateCoalescingPandaLtiAccounts (20131118211442)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_lti_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "key" varchar(255), "secret" varchar(255), "oauth2_client_id" varchar(255), "oauth2_client_key" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131118211442"]]  (0.6ms) commit transaction Migrating to CreateCoalescingPandaLtiNonces (20131119165343)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_lti_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "nonce" varchar(255), "timestamp" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131119165343"]]  (0.5ms) commit transaction Migrating to AddSettingsToCoalescingPandaLtiAccount (20140722210735)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "coalescing_panda_lti_accounts" ADD "settings" text SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140722210735"]]  (0.4ms) commit transaction Migrating to CreateCoalescingPandaSessions (20140904223159)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "data" text, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904223159"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaTerms (20141119225319)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_terms" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "name" varchar(255), "code" varchar(255), "sis_id" varchar(255), "canvas_term_id" varchar(255), "start_at" datetime, "end_at" datetime, "workflow_state" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_coalescing_panda_terms_on_canvas_term_id" ON "coalescing_panda_terms" ("canvas_term_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_terms_on_sis_id" ON "coalescing_panda_terms" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141119225319"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaCourses (20141119225721)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_courses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "coalescing_panda_term_id" integer, "name" varchar(255), "canvas_course_id" varchar(255), "sis_id" varchar(255), "start_at" datetime, "conclude_at" datetime, "workflow_state" varchar(255), "course_code" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_courses_account" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_courses_on_canvas_course_id" ON "coalescing_panda_courses" ("canvas_course_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_courses_on_sis_id" ON "coalescing_panda_courses" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141119225721"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaSections (20141120151432)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "coalescing_panda_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_course_id" integer, "name" varchar(255), "canvas_section_id" varchar(255), "sis_id" varchar(255), "workflow_state" varchar(255), "start_at" datetime, "end_at" datetime, "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "index_coalescing_panda_sections_on_coalescing_panda_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_sections_on_canvas_section_id" ON "coalescing_panda_sections" ("canvas_section_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_sections_on_sis_id" ON "coalescing_panda_sections" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120151432"]]  (0.6ms) commit transaction Migrating to CreateCoalescingPandaAssignments (20141120151940)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_course_id" integer, "name" varchar(255), "description" varchar(255), "canvas_assignment_id" varchar(255), "sis_id" varchar(255), "workflow_state" varchar(255), "points_possible" float, "due_at" datetime, "unlock_at" datetime, "lock_at" datetime, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_assignments_course" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_assignments_on_canvas_assignment_id" ON "coalescing_panda_assignments" ("canvas_assignment_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_assignments_on_sis_id" ON "coalescing_panda_assignments" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120151940"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaUsers (20141120152458)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "name" varchar(255), "email" varchar(255), "roles" varchar(255), "workflow_state" varchar(255), "sis_id" varchar(255), "canvas_user_id" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_users_account" ON "coalescing_panda_users" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_users_on_canvas_user_id" ON "coalescing_panda_users" ("canvas_user_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_users_on_sis_id" ON "coalescing_panda_users" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120152458"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaSubmissions (20141120152546)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_submissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_user_id" integer, "coalescing_panda_assignment_id" integer, "url" varchar(255), "grade" varchar(255), "score" varchar(255), "submitted_at" datetime, "workflow_state" varchar(255), "canvas_submission_id" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_submissions_user_and_assignment" ON "coalescing_panda_submissions" ("coalescing_panda_user_id", "coalescing_panda_assignment_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_submissions_on_canvas_submission_id" ON "coalescing_panda_submissions" ("canvas_submission_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120152546"]]  (0.6ms) commit transaction Migrating to CreateCoalescingPandaEnrollments (20141120153135)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "coalescing_panda_enrollments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_user_id" integer, "coalescing_panda_section_id" integer, "workflow_state" varchar(255), "sis_id" varchar(255), "canvas_enrollment_id" varchar(255), "start_at" datetime, "end_at" datetime, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_enrollments_user_and_assignment" ON "coalescing_panda_enrollments" ("coalescing_panda_user_id", "coalescing_panda_section_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_enrollments_on_canvas_enrollment_id" ON "coalescing_panda_enrollments" ("canvas_enrollment_id")  (0.1ms) CREATE INDEX "index_coalescing_panda_enrollments_on_sis_id" ON "coalescing_panda_enrollments" ("sis_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120153135"]]  (0.5ms) commit transaction Migrating to AddCanvasAccountIdToLtiAccount (20141120205729)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "coalescing_panda_lti_accounts" ADD "canvas_account_id" varchar(255) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141120205729"]]  (0.5ms) commit transaction Migrating to CreateCoalescingPandaCanvasBatches (20141121174846)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "coalescing_panda_canvas_batches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "percent_complete" float DEFAULT 0.0, "status" varchar(255), "message" text, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141121174846"]]  (0.5ms) commit transaction Migrating to CreateDelayedJobs (20141124160857)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141124160857"]]  (0.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DROP TABLE "coalescing_panda_assignments"  (1.1ms) CREATE TABLE "coalescing_panda_assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_course_id" integer, "name" varchar(255), "description" varchar(255), "canvas_assignment_id" varchar(255), "sis_id" varchar(255), "workflow_state" varchar(255), "points_possible" float, "due_at" datetime, "unlock_at" datetime, "lock_at" datetime, "created_at" datetime, "updated_at" datetime)  (0.9ms) CREATE INDEX "index_coalescing_panda_assignments_on_canvas_assignment_id" ON "coalescing_panda_assignments" ("canvas_assignment_id")  (1.2ms) CREATE INDEX "index_assignments_course" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.9ms) CREATE INDEX "index_coalescing_panda_assignments_on_sis_id" ON "coalescing_panda_assignments" ("sis_id")  (0.8ms) DROP TABLE "coalescing_panda_canvas_api_auths"  (1.0ms) CREATE TABLE "coalescing_panda_canvas_api_auths" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar(255), "api_domain" varchar(255), "api_token" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.7ms) DROP TABLE "coalescing_panda_canvas_batches"  (0.9ms) CREATE TABLE "coalescing_panda_canvas_batches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "percent_complete" float DEFAULT 0.0, "status" varchar(255), "message" text, "created_at" datetime, "updated_at" datetime)   (0.9ms) DROP TABLE "coalescing_panda_courses"  (0.8ms) CREATE TABLE "coalescing_panda_courses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "coalescing_panda_term_id" integer, "name" varchar(255), "canvas_course_id" varchar(255), "sis_id" varchar(255), "start_at" datetime, "conclude_at" datetime, "workflow_state" varchar(255), "course_code" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE INDEX "index_coalescing_panda_courses_on_canvas_course_id" ON "coalescing_panda_courses" ("canvas_course_id")  (1.0ms) CREATE INDEX "index_courses_account" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.9ms) CREATE INDEX "index_courses_term" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.8ms) CREATE INDEX "index_coalescing_panda_courses_on_sis_id" ON "coalescing_panda_courses" ("sis_id")  (0.8ms) DROP TABLE "coalescing_panda_enrollments"  (0.7ms) CREATE TABLE "coalescing_panda_enrollments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_user_id" integer, "coalescing_panda_section_id" integer, "workflow_state" varchar(255), "sis_id" varchar(255), "canvas_enrollment_id" varchar(255), "start_at" datetime, "end_at" datetime, "created_at" datetime, "updated_at" datetime)   (0.6ms) CREATE INDEX "index_coalescing_panda_enrollments_on_canvas_enrollment_id" ON "coalescing_panda_enrollments" ("canvas_enrollment_id")  (0.7ms) CREATE INDEX "index_enrollments_user_and_assignment" ON "coalescing_panda_enrollments" ("coalescing_panda_user_id", "coalescing_panda_section_id")  (0.7ms) CREATE INDEX "index_coalescing_panda_enrollments_on_sis_id" ON "coalescing_panda_enrollments" ("sis_id")  (0.7ms) DROP TABLE "coalescing_panda_lti_accounts"  (0.8ms) CREATE TABLE "coalescing_panda_lti_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "key" varchar(255), "secret" varchar(255), "oauth2_client_id" varchar(255), "oauth2_client_key" varchar(255), "created_at" datetime, "updated_at" datetime, "settings" text, "canvas_account_id" varchar(255))  (0.7ms) DROP TABLE "coalescing_panda_lti_nonces"  (0.8ms) CREATE TABLE "coalescing_panda_lti_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "nonce" varchar(255), "timestamp" datetime)  (0.8ms) DROP TABLE "coalescing_panda_sections"  (0.8ms) CREATE TABLE "coalescing_panda_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_course_id" integer, "name" varchar(255), "canvas_section_id" varchar(255), "sis_id" varchar(255), "workflow_state" varchar(255), "start_at" datetime, "end_at" datetime, "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE INDEX "index_coalescing_panda_sections_on_canvas_section_id" ON "coalescing_panda_sections" ("canvas_section_id")  (0.7ms) CREATE INDEX "index_coalescing_panda_sections_on_coalescing_panda_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.7ms) CREATE INDEX "index_coalescing_panda_sections_on_sis_id" ON "coalescing_panda_sections" ("sis_id")  (0.6ms) DROP TABLE "coalescing_panda_sessions"  (0.8ms) CREATE TABLE "coalescing_panda_sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "data" text, "created_at" datetime, "updated_at" datetime)   (0.7ms) DROP TABLE "coalescing_panda_submissions"  (0.7ms) CREATE TABLE "coalescing_panda_submissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_user_id" integer, "coalescing_panda_assignment_id" integer, "url" varchar(255), "grade" varchar(255), "score" varchar(255), "submitted_at" datetime, "workflow_state" varchar(255), "canvas_submission_id" varchar(255), "created_at" datetime, "updated_at" datetime)   (1.2ms) CREATE INDEX "index_coalescing_panda_submissions_on_canvas_submission_id" ON "coalescing_panda_submissions" ("canvas_submission_id")  (1.1ms) CREATE INDEX "index_submissions_user_and_assignment" ON "coalescing_panda_submissions" ("coalescing_panda_user_id", "coalescing_panda_assignment_id")  (1.2ms) DROP TABLE "coalescing_panda_terms"  (1.1ms) CREATE TABLE "coalescing_panda_terms" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "name" varchar(255), "code" varchar(255), "sis_id" varchar(255), "canvas_term_id" varchar(255), "start_at" datetime, "end_at" datetime, "workflow_state" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.9ms) CREATE INDEX "index_coalescing_panda_terms_on_canvas_term_id" ON "coalescing_panda_terms" ("canvas_term_id")  (1.0ms) CREATE INDEX "index_coalescing_panda_terms_on_sis_id" ON "coalescing_panda_terms" ("sis_id")  (1.2ms) DROP TABLE "coalescing_panda_users"  (0.8ms) CREATE TABLE "coalescing_panda_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_lti_account_id" integer, "name" varchar(255), "email" varchar(255), "roles" varchar(255), "workflow_state" varchar(255), "sis_id" varchar(255), "canvas_user_id" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE INDEX "index_coalescing_panda_users_on_canvas_user_id" ON "coalescing_panda_users" ("canvas_user_id")  (0.8ms) CREATE INDEX "index_users_account" ON "coalescing_panda_users" ("coalescing_panda_lti_account_id")  (0.7ms) CREATE INDEX "index_coalescing_panda_users_on_sis_id" ON "coalescing_panda_users" ("sis_id")  (0.7ms) DROP TABLE "delayed_jobs"  (0.8ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) SELECT version FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddSubmissionTypesToAssignments (20141208221740)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "coalescing_panda_assignments" ADD "submission_types" text SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141208221740"]]  (0.9ms) commit transaction Migrating to AddGroupCategoryIdToAssignment (20150106175418)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "coalescing_panda_assignments" ADD "group_category_id" integer  (0.2ms) ALTER TABLE "coalescing_panda_assignments" ADD "grade_group_students_individually" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150106175418"]]  (0.8ms) commit transaction Migrating to AddPublishedToAssignments (20150106180131)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "coalescing_panda_assignments" ADD "published" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150106180131"]]  (0.8ms) commit transaction Migrating to CreateCoalescingPandaGroups (20150107205405)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "coalescing_panda_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "context_id" integer, "context_type" varchar(255), "description" varchar(255), "group_category_id" varchar(255), "canvas_group_id" varchar(255), "name" varchar(255), "members_count" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150107205405"]]  (0.7ms) commit transaction Migrating to CreateCoalescingPandaGroupMemberships (20150107205413)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "coalescing_panda_group_memberships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "coalescing_panda_group_id" integer, "coalescing_panda_user_id" integer, "canvas_group_membership_id" varchar(255), "workflow_state" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150107205413"]]  (0.9ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddContextToCanvasBatch (20150210180516)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "coalescing_panda_canvas_batches" ADD "context_id" varchar(255)  (0.1ms) ALTER TABLE "coalescing_panda_canvas_batches" ADD "context_type" varchar(255) SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150210180516"]]  (0.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.7ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.2ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.3ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_user_id_course_id" ON "coalescing_panda_sections" ("coalescing_panda_user_id", "coalescing_panda_course_id") SQLite3::SQLException: table coalescing_panda_sections has no column named coalescing_panda_user_id: CREATE INDEX "index_sections_user_id_course_id" ON "coalescing_panda_sections" ("coalescing_panda_user_id", "coalescing_panda_course_id")  (0.9ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.3ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_sections_course_id_section_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id", "section_id") SQLite3::SQLException: table coalescing_panda_sections has no column named section_id: CREATE INDEX "index_sections_course_id_section_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id", "section_id")  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.4ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("group_id", "group_membership_id") SQLite3::SQLException: table coalescing_panda_groups has no column named group_id: CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("group_id", "group_membership_id")  (0.9ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.3ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("coalescing_panda_group_id", "coalescing_panda_group_membership_id") SQLite3::SQLException: table coalescing_panda_groups has no column named coalescing_panda_group_id: CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("coalescing_panda_group_id", "coalescing_panda_group_membership_id")  (0.8ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.3ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("coalescing_panda_group_id", "coalescing_panda_group_membership_id") SQLite3::SQLException: table coalescing_panda_groups has no column named coalescing_panda_group_id: CREATE INDEX "index_groups_group_id_membership_id" ON "coalescing_panda_groups" ("coalescing_panda_group_id", "coalescing_panda_group_membership_id")  (0.8ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddMissingIndexes (20150218185536)  (0.1ms) begin transaction  (0.3ms) CREATE INDEX "index_assignment_course_id" ON "coalescing_panda_assignments" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_courses_lti_account_id" ON "coalescing_panda_courses" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_courses_term_id" ON "coalescing_panda_courses" ("coalescing_panda_term_id")  (0.1ms) CREATE INDEX "index_sections_course_id" ON "coalescing_panda_sections" ("coalescing_panda_course_id")  (0.1ms) CREATE INDEX "index_enrollments_user_id" ON "coalescing_panda_enrollments" ("coalescing_panda_user_id")  (0.1ms) CREATE INDEX "index_enrollments_section_id" ON "coalescing_panda_enrollments" ("coalescing_panda_section_id")  (0.1ms) CREATE INDEX "index_memberships_user_id" ON "coalescing_panda_group_memberships" ("coalescing_panda_user_id")  (0.1ms) CREATE INDEX "index_memberships_group_id" ON "coalescing_panda_group_memberships" ("coalescing_panda_group_id")  (0.1ms) CREATE INDEX "index_submissions_user_id" ON "coalescing_panda_submissions" ("coalescing_panda_user_id")  (0.1ms) CREATE INDEX "index_submissions_assignment_id" ON "coalescing_panda_submissions" ("coalescing_panda_assignment_id")  (0.1ms) CREATE INDEX "index_users_lti_account_id" ON "coalescing_panda_users" ("coalescing_panda_lti_account_id")  (0.1ms) CREATE INDEX "index_terms_lti_account_id" ON "coalescing_panda_terms" ("coalescing_panda_lti_account_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150218185536"]]  (0.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"