unidom-party 1.9.7 → 1.9.8

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: 69112818e611dcbdcfc8975fffafbd0aa9890e32
4
- data.tar.gz: '08375d98e15d45e6c1e78f4cf7ac8f0e9636c959'
3
+ metadata.gz: 07d27a5d4d7381217ee7265ad58d912d52e943b3
4
+ data.tar.gz: ef7ef893e621eba0babf774fcc13260a8ac995cb
5
5
  SHA512:
6
- metadata.gz: c3c5cafb5160263cac4b8c4940dbcd70572cb6337d740667c03725f34975d5e84ae8e6f4bafb53461f6f6129fef59d418166d48872346dcb9b0d17401e1f221c
7
- data.tar.gz: 9f42c3e80fe646e17546039ccb24aa4e89ffe1262ed208825551f8f0bda53046696f45eff55e6c3c1ade5ace0df97b92ec406ac08150a21da1be7fe90249ab8d
6
+ metadata.gz: 54f070df312d86168f411a5d436747a77fa63e7fab9fe96b351742699afe1e07d8b67a3d96192f50b0d1374e533a83962ea193f857e7290ded291f816a498e86
7
+ data.tar.gz: e2a01ce0b2dcda82d2c3094d9a2fbc9a26a9c356b8229313a919f185de5c98a687607d2ca0a96d42b78d76cea884d9205c376f07ffec7a2bd26a2f0e2d87c3b2
@@ -16,8 +16,8 @@ class CreateUnidomPartyRelations < ActiveRecord::Migration
16
16
  t.text :description
17
17
 
18
18
  t.column :state, 'char(1)', null: false, default: 'C'
19
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
20
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
19
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
20
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
21
21
  t.boolean :defunct, null: false, default: false
22
22
  t.jsonb :notation, null: false, default: {}
23
23
 
@@ -9,8 +9,8 @@ class CreateUnidomPeople < ActiveRecord::Migration
9
9
 
10
10
  t.string :slug, null: false, default: nil, limit: 200
11
11
  t.column :state, 'char(1)', null: false, default: 'C'
12
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
13
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
12
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
13
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
14
14
  t.boolean :defunct, null: false, default: false
15
15
  t.jsonb :notation, null: false, default: {}
16
16
 
@@ -9,8 +9,8 @@ class CreateUnidomShops < ActiveRecord::Migration
9
9
 
10
10
  t.string :slug, null: false, default: nil, limit: 200
11
11
  t.column :state, 'char(1)', null: false, default: 'C'
12
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
13
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
12
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
13
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
14
14
  t.boolean :defunct, null: false, default: false
15
15
  t.jsonb :notation, null: false, default: {}
16
16
 
@@ -15,8 +15,8 @@ class CreateUnidomGovernmentAgencies < ActiveRecord::Migration
15
15
 
16
16
  t.string :slug, null: false, default: nil, limit: 200
17
17
  t.column :state, 'char(1)', null: false, default: 'C'
18
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
19
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
18
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
19
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
20
20
  t.boolean :defunct, null: false, default: false
21
21
  t.jsonb :notation, null: false, default: {}
22
22
 
@@ -9,8 +9,8 @@ class CreateUnidomCompanies < ActiveRecord::Migration
9
9
 
10
10
  t.string :slug, null: false, default: nil, limit: 200
11
11
  t.column :state, 'char(1)', null: false, default: 'C'
12
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
13
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
12
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
13
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
14
14
  t.boolean :defunct, null: false, default: false
15
15
  t.jsonb :notation, null: false, default: {}
16
16
 
@@ -19,8 +19,8 @@ class CreateUnidomCollaboratings < ActiveRecord::Migration
19
19
  t.text :instruction
20
20
 
21
21
  t.column :state, 'char(1)', null: false, default: 'C'
22
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
23
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
22
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
23
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
24
24
  t.boolean :defunct, null: false, default: false
25
25
  t.jsonb :notation, null: false, default: {}
26
26
 
@@ -1,5 +1,5 @@
1
1
  module Unidom
2
2
  module Party
3
- VERSION = '1.9.7'.freeze
3
+ VERSION = '1.9.8'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unidom-party
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.7
4
+ version: 1.9.8
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-20 00:00:00.000000000 Z
11
+ date: 2017-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unidom-common