camaleon_cms 2.4.6.4 → 2.4.6.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of camaleon_cms might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51f158f9fa109f3a8e4c758f1e3467042cb72305987fe6d1e0fb311a09bd8198
4
- data.tar.gz: ef9c01a8442c198389f9053bc82681478676ef1e54bc4327ca1a96c4602ccb36
3
+ metadata.gz: 7bf11a6e7095b8c7592f1417e1bf106226272fc0940a914689b72738836dea24
4
+ data.tar.gz: c088a65f8a95a0537f3ea2886dae9e105f4a19bacac17c06ff276066e13cdb02
5
5
  SHA512:
6
- metadata.gz: aa26577860432780489e92700b49a41c6f213bf4b9df5f331aaab7e37051396f452097d48be73bc294f69e34088137f6effcdb17fa4af8bb3c27896b553732bf
7
- data.tar.gz: fc41f0fb3f89ec060fd1156f4992f40000d01323d7934210e5356131eb2145725f6cce75f020adb9c00e9adfea5dc9357b73a7450c08b82b6a1b005622d9aef6
6
+ metadata.gz: b5c4a2a292133a1a0959e7b1f97c998d0ff6719b2dac3e27629a639f2bb5d226db3838023196b7742e4497533a60e4f9753f099a6b56cc09eb783554e7e233ec
7
+ data.tar.gz: 9c6a3a058bdb2c8aa15831c4d11ce12b6755c12b5ccccea4860dfe5173281842d881ddc7275a12237534c1d78616f7af2074728e31bfaa364e7ae3a36c884697
@@ -1,9 +1,10 @@
1
1
  class AdjustFieldLength < CamaManager.migration_class
2
2
  def change
3
- change_column "#{PluginRoutes.static_system_info["db_prefix"]}posts", :title, :text
4
- remove_index "#{PluginRoutes.static_system_info["db_prefix"]}posts", :slug
5
- change_column "#{PluginRoutes.static_system_info["db_prefix"]}posts", :slug, :text
6
- add_index "#{PluginRoutes.static_system_info["db_prefix"]}posts", :slug, length: 500
3
+ post_table = CamaleonCms::Post.table_name
4
+ change_column post_table, :title, :text
5
+ remove_index(post_table, :slug) if index_exists?(post_table, :slug)
6
+ change_column post_table, :slug, :text
7
+ add_index post_table, :slug, length: 500
7
8
  change_column "#{PluginRoutes.static_system_info["db_prefix"]}term_taxonomy", :name, :text
8
9
  end
9
10
  end
@@ -1,3 +1,3 @@
1
1
  module CamaleonCms
2
- VERSION = '2.4.6.4'
2
+ VERSION = '2.4.6.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: camaleon_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.6.4
4
+ version: 2.4.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Peredo Diaz