zuora_connect 1.7.74 → 1.7.75
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/20100718151733_create_connect_app_instances.rb +1 -1
- data/db/migrate/20101024162319_add_tokens_to_app_instance.rb +1 -1
- data/db/migrate/20101024220705_add_token_to_app_instance.rb +1 -1
- data/db/migrate/20110131211919_add_sessions_table.rb +1 -1
- data/db/migrate/20110411200303_add_expiration_to_app_instance.rb +1 -1
- data/db/migrate/20110413191512_add_new_api_token.rb +1 -1
- data/db/migrate/20110503003602_add_catalog_data_to_app_instance.rb +1 -1
- data/db/migrate/20110503003603_add_catalog_mappings_to_app_instance.rb +1 -1
- data/db/migrate/20110503003604_catalog_default.rb +1 -1
- data/db/migrate/20180301052853_add_catalog_attempted_at.rb +1 -1
- data/db/migrate/20181206162339_add_fields_to_instance.rb +1 -1
- data/lib/zuora_connect/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 059b08f42e2f350d171793d7ae9330ab24a04dbe
|
4
|
+
data.tar.gz: 23c5d5381b0dc9ee4803c5d3362b453badf14160
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70f5d5920db94367cff248a3fd6429f917003cf2416ac826ab765f6e7b390de64634de9343ec72495c9c2c102facf75e221b4df2c4fe6e327de742eb586c64da
|
7
|
+
data.tar.gz: c829dafcca413c77216d99c80436fcc1f3195b44317a0974d72d5ca7644b339d29c578a1fe8832fa85f552eba7ffd09b141695c75cd1cb3e28cac93ec7fe00a0
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class AddTokensToAppInstance < ActiveRecord::Migration
|
1
|
+
class AddTokensToAppInstance < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
add_column :zuora_connect_app_instances, :access_token, :string unless column_exists? :zuora_connect_app_instances, :access_token
|
4
4
|
add_column :zuora_connect_app_instances, :refresh_token, :string unless column_exists? :zuora_connect_app_instances, :refresh_token
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class AddExpirationToAppInstance < ActiveRecord::Migration
|
1
|
+
class AddExpirationToAppInstance < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
add_column :zuora_connect_app_instances, :oauth_expires_at, :datetime unless column_exists? :zuora_connect_app_instances, :oauth_expires_at
|
4
4
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class AddCatalogDataToAppInstance < ActiveRecord::Migration
|
1
|
+
class AddCatalogDataToAppInstance < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
add_column :zuora_connect_app_instances, :catalog_updated_at, :datetime unless column_exists? :zuora_connect_app_instances, :catalog_updated_at
|
4
4
|
add_column :zuora_connect_app_instances, :catalog, :jsonb, default: {} unless column_exists? :zuora_connect_app_instances, :catalog
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class AddCatalogMappingsToAppInstance < ActiveRecord::Migration
|
1
|
+
class AddCatalogMappingsToAppInstance < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
add_column :zuora_connect_app_instances, :catalog_mapping, :jsonb, default: {} unless column_exists? :zuora_connect_app_instances, :catalog_mapping
|
4
4
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class AddCatalogAttemptedAt < ActiveRecord::Migration
|
1
|
+
class AddCatalogAttemptedAt < ActiveRecord::Migration
|
2
2
|
def change
|
3
3
|
add_column :zuora_connect_app_instances, :catalog_update_attempt_at, :datetime unless column_exists? :zuora_connect_app_instances, :catalog_update_attempt_at
|
4
4
|
end
|