perus 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa3ab7e03d409d2fef50644965e75f25febf3518
4
- data.tar.gz: 80e936a23bdf3b630490717f256e128a28c5aea4
3
+ metadata.gz: 4d1f5ab6c78638c560680e41320b47788c7edd15
4
+ data.tar.gz: 6dae1beb40ed5328a140cce153cebf87193a3aae
5
5
  SHA512:
6
- metadata.gz: 3fd4b859f54bfdff83f372274200e448890276363e2ac04f6940ff4ea6c96d0b99899f5a28a99ecf00a3ca196be8d65306b04a38db526e9a0e8b1d209fcb9dfd
7
- data.tar.gz: bdf8738cb4288c7ae14704792d9d2b1a6efaf8b04dfe231dddca204e5b18da5ecb68f52720092380ca057f46123562a34245b6bbb06bfcb5063ed94ba275b9a1
6
+ metadata.gz: 034124412a729dc1c06c7f4da61548ec7060deb5a154939b8e9e1b00d220233e1fd0f94c00dda23f614b30523c9d8346bb3a0425a98da219e27c05509f78a13b
7
+ data.tar.gz: 638f34d47a0fc40f2297ef7d898820584f616b25f35cf693485fac164a5f066076b7b251201c4ed4f63f239a290e6b8d615c370ea2fe5f29e1fad459d988d9c5
@@ -1,8 +1,8 @@
1
1
  Sequel.migration do
2
- change do
3
- change_column :values, :timestamp, :bigint
4
- change_column :errors, :timestamp, :bigint
5
- change_column :actions, :timestamp, :bigint
6
- change_column :active_alerts, :timestamp, :bigint
2
+ up do
3
+ execute("ALTER TABLE values CHANGE timestamp timestamp BIGINT")
4
+ execute("ALTER TABLE errors CHANGE timestamp timestamp BIGINT")
5
+ execute("ALTER TABLE actions CHANGE timestamp timestamp BIGINT")
6
+ execute("ALTER TABLE active_alerts CHANGE timestamp timestamp BIGINT")
7
7
  end
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module Perus
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Cannings