coalescing_panda 3.1.2 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cbdd11d1eac7f4a44883f9b019ad941c1b7554b7
4
- data.tar.gz: 2d2eb9c249524556096304ec307e424a838e116b
3
+ metadata.gz: 2ffc19770d2233ac777721414cc57eac84a041ef
4
+ data.tar.gz: 1024528490b36fa379e4651d8d563b4085c757f5
5
5
  SHA512:
6
- metadata.gz: ed5676372383e502905b918e9317dc11b3afe7ac48fc47d58de02610a1a974536cb47471fd6b4cf58fa266431433ee7da0fa89b205d1a4f57f3f1c95320d6cea
7
- data.tar.gz: 4562df025005aedc61e9fa092fc43c3e293f051f7b37976c5fd6654ee214162ac2596d3999bfff4bebad686803beee83152dd4d26bef6afc93a5779844131535
6
+ metadata.gz: 3a6f2c9cb1ceb6b9a7da2da3985d5c293ffe48e630155da889b017ce20d733f8f3d8ae5d137fbc434f8ae355885abe35239f271745b9bf33e27d1fc47013d1cd
7
+ data.tar.gz: 60fc7bfc4751a238ede86fa85c1998b8b4216a4f64da7603d4fdb70f9770836179caeb157e89b985fd6a65da6819434be025912c3ed46c775f3f8d2140b0162e
@@ -0,0 +1,5 @@
1
+ class AddTypeToEnrollments < ActiveRecord::Migration
2
+ def change
3
+ add_column :coalescing_panda_enrollments, :type, :string
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module CoalescingPanda
2
- VERSION = '3.1.2'
2
+ VERSION = '3.1.3'
3
3
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20141124160857) do
14
+ ActiveRecord::Schema.define(version: 20141125185516) do
15
15
 
16
16
  create_table "coalescing_panda_assignments", force: true do |t|
17
17
  t.integer "coalescing_panda_course_id"
@@ -77,6 +77,7 @@ ActiveRecord::Schema.define(version: 20141124160857) do
77
77
  t.datetime "end_at"
78
78
  t.datetime "created_at"
79
79
  t.datetime "updated_at"
80
+ t.string "type"
80
81
  end
81
82
 
82
83
  add_index "coalescing_panda_enrollments", ["canvas_enrollment_id"], name: "index_coalescing_panda_enrollments_on_canvas_enrollment_id"
@@ -560,3 +560,16 @@ Migrating to CreateDelayedJobs (20141124160857)
560
560
  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141124160857"]]
561
561
   (0.9ms) commit transaction
562
562
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
563
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
564
+ Migrating to AddTypeToEnrollments (20141125185516)
565
+  (0.1ms) begin transaction
566
+  (0.2ms) ALTER TABLE "enrollments" ADD "type" varchar(255)
567
+ SQLite3::SQLException: no such table: enrollments: ALTER TABLE "enrollments" ADD "type" varchar(255)
568
+  (0.0ms) rollback transaction
569
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
570
+ Migrating to AddTypeToEnrollments (20141125185516)
571
+  (0.1ms) begin transaction
572
+  (0.5ms) ALTER TABLE "coalescing_panda_enrollments" ADD "type" varchar(255)
573
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141125185516"]]
574
+  (0.8ms) commit transaction
575
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coalescing_panda
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.2
4
+ version: 3.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Mills
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-24 00:00:00.000000000 Z
13
+ date: 2014-11-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -358,6 +358,7 @@ files:
358
358
  - db/migrate/20141120205729_add_canvas_account_id_to_lti_account.rb
359
359
  - db/migrate/20141121174846_create_coalescing_panda_canvas_batches.rb
360
360
  - db/migrate/20141124160857_create_delayed_jobs.rb
361
+ - db/migrate/20141125185516_add_type_to_enrollments.rb
361
362
  - lib/coalescing_panda.rb
362
363
  - lib/coalescing_panda/controller_helpers.rb
363
364
  - lib/coalescing_panda/engine.rb