coalescing_panda 3.2.2 → 3.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/coalescing_panda/version.rb +1 -1
- metadata +2 -3
- data/db/migrate/20150218185536_add_missing_indexes.rb +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a68c7074069937ee9123210df564f8530abfd028
|
4
|
+
data.tar.gz: deb73b2b1afc2356f43f0bc0293780a7d7410f04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89d9528a134274ed0f4cdb1202e41006841e3c648951531ab606843b8069272fc28b6da22df4bb6730ff5be64fb6b5ea707907daad763f0104edf86fa70e6535
|
7
|
+
data.tar.gz: 95204524896f7e6bfc927417c178eff6868dd95859320caa941c39567cf3cc0c86de8300221fce50b246f2bd6f17f312e0efcc195751b89d34f6c147ffd50ef9
|
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.2.
|
4
|
+
version: 3.2.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: 2015-03-
|
13
|
+
date: 2015-03-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -379,7 +379,6 @@ files:
|
|
379
379
|
- db/migrate/20150107205405_create_coalescing_panda_groups.rb
|
380
380
|
- db/migrate/20150107205413_create_coalescing_panda_group_memberships.rb
|
381
381
|
- db/migrate/20150210180516_add_context_to_canvas_batch.rb
|
382
|
-
- db/migrate/20150218185536_add_missing_indexes.rb
|
383
382
|
- lib/coalescing_panda.rb
|
384
383
|
- lib/coalescing_panda/controller_helpers.rb
|
385
384
|
- lib/coalescing_panda/engine.rb
|
@@ -1,16 +0,0 @@
|
|
1
|
-
class AddMissingIndexes < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
add_index :coalescing_panda_assignments, :coalescing_panda_course_id, name: 'index_assignment_course_id'
|
4
|
-
add_index :coalescing_panda_courses, :coalescing_panda_lti_account_id, name: 'index_courses_lti_account_id'
|
5
|
-
add_index :coalescing_panda_courses, :coalescing_panda_term_id, name: 'index_courses_term_id'
|
6
|
-
add_index :coalescing_panda_sections, :coalescing_panda_course_id, name: 'index_sections_course_id'
|
7
|
-
add_index :coalescing_panda_enrollments, :coalescing_panda_user_id, name: 'index_enrollments_user_id'
|
8
|
-
add_index :coalescing_panda_enrollments, :coalescing_panda_section_id, name: 'index_enrollments_section_id'
|
9
|
-
add_index :coalescing_panda_group_memberships, :coalescing_panda_user_id, name: 'index_memberships_user_id'
|
10
|
-
add_index :coalescing_panda_group_memberships, :coalescing_panda_group_id, name: 'index_memberships_group_id'
|
11
|
-
add_index :coalescing_panda_submissions, :coalescing_panda_user_id, name: 'index_submissions_user_id'
|
12
|
-
add_index :coalescing_panda_submissions, :coalescing_panda_assignment_id, name: 'index_submissions_assignment_id'
|
13
|
-
add_index :coalescing_panda_users, :coalescing_panda_lti_account_id, name: 'index_users_lti_account_id'
|
14
|
-
add_index :coalescing_panda_terms, :coalescing_panda_lti_account_id, name: 'index_terms_lti_account_id'
|
15
|
-
end
|
16
|
-
end
|