renalware-core 2.0.47 → 2.0.48
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 +4 -4
- data/db/migrate/20180831134606_add_reporting_indexes.rb +15 -10
- data/lib/renalware/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0be56fcf49b72f0490884ecc1bbd0c4148299c660d3e8712a735ef40302a9920
|
4
|
+
data.tar.gz: a99656943d079f3466886557b7bae3ef2977440f2efcd77b2f8c2e5cbd80d887
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58f18b012c7f6f78e7820f1b255c40cf9319d4e4e1922183d01a1668d991d5014c0916bf6e3f438ed172579a59939288fabb0c0dc8cd3037078bc740222e43e5
|
7
|
+
data.tar.gz: 5247159c8e6011ecb9879943b263a62e5ad26fe1c58d1c0b90b3a5b2103521b97671f00b02b4ad919c1859e6f8d7d9db8320a35efd0ed5482df72a395cf25db5
|
@@ -1,13 +1,18 @@
|
|
1
1
|
class AddReportingIndexes < ActiveRecord::Migration[5.1]
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
2
|
+
# Have removed this index for now as seems to be locking
|
3
|
+
# pathology_observations
|
4
|
+
# and taking several minutes to complete!
|
5
|
+
#
|
6
|
+
# def up
|
7
|
+
# connection.execute(<<-SQL)
|
8
|
+
# CREATE INDEX pathology_observations_created_on
|
9
|
+
# ON pathology_observations USING btree ((created_at::date));
|
10
|
+
# SQL
|
11
|
+
# end
|
7
12
|
|
8
|
-
def down
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
end
|
13
|
+
# def down
|
14
|
+
# connection.execute(<<-SQL)
|
15
|
+
# DROP INDEX pathology_observations_created_on;
|
16
|
+
# SQL
|
17
|
+
# end
|
13
18
|
end
|
data/lib/renalware/version.rb
CHANGED