unidom-standard 1.4.8 → 1.4.9

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: e64e20b9eb93af195a1485c47b5de002463d860e
4
- data.tar.gz: fd9a944a3ecc71f738cb66f21aa1cea5b681f204
3
+ metadata.gz: f23afa10ad48dfab0c3947f899ed04325f6c7513
4
+ data.tar.gz: 654eecf63b7791d9918ed92f817a036f03eb5237
5
5
  SHA512:
6
- metadata.gz: 72791825b90de002a221a516c7353347c87850553baa76f5d017c8ee7ba87370ab028c35876cb2df94b43dfd6cd4c48c075c349cb272fac66c1e431ac1e0e951
7
- data.tar.gz: d630b93497c9518e728fdeba587e18230743424c8388ee8ce802c8afb8c32baac8555703d1ffd0256b8c914b9e9dfe52e3a706f2ef39b054c6f286e3fed5c3ce
6
+ metadata.gz: 86badf459f93b5d42d83e21467311c76ee763bda814bcba932388a183b807488facc35107aeb72df2d744dce9eb8d2b366cbd1369303a3d22ed1a5acbafe2fd1
7
+ data.tar.gz: 0c779591a6e5e92887a89ab6f233ef59d447f244624f763562249a4a470931f2301ab87e3de9ca11bd21e62ae03f84e01c96a72f51e25716a985ae5d34aa124b
@@ -18,8 +18,8 @@ class CreateUnidomStandards < ActiveRecord::Migration
18
18
  t.date :obsoleted_on, null: false, default: '3000-01-01'
19
19
 
20
20
  t.column :state, 'char(1)', null: false, default: 'C'
21
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
22
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
21
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
22
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
23
23
  t.boolean :defunct, null: false, default: false
24
24
  t.jsonb :notation, null: false, default: {}
25
25
 
@@ -10,8 +10,8 @@ class CreateUnidomStandardAssociatings < ActiveRecord::Migration
10
10
  t.column :association_code, 'char(4)', null: false, default: 'REVS'
11
11
 
12
12
  t.column :state, 'char(1)', null: false, default: 'C'
13
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
14
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
13
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
14
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
15
15
  t.boolean :defunct, null: false, default: false
16
16
  t.jsonb :notation, null: false, default: {}
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Unidom
2
2
  module Standard
3
- VERSION = '1.4.8'.freeze
3
+ VERSION = '1.4.9'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unidom-standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.8
4
+ version: 1.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Topbit Du
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-27 00:00:00.000000000 Z
11
+ date: 2017-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unidom-common