Skip to content

Commit

Permalink
[#33 state:resolved] Bumped Theme Manager version to v0.9.36. for cha…
Browse files Browse the repository at this point in the history
…nge in datatype for ThemeManager::Theme column `ts_label` from `text` (i.e. `mediumtext`) to `string(255)` (i.e. `varchar(255)`). Apparently `text` columns cannot be used for sorting or comparison in DBMS' (e.g. Oracle) that treat them as CLOBs (i.e. binary text). See full commit for references.

* Client ticket: https://endevver.lighthouseapp.com/projects/63814/tickets/33
  • Loading branch information
jayallen committed Nov 23, 2010
1 parent 134146e commit f54d2c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addons/ThemeManager.plugin/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ key: ThemeManager
author_link: http://endevver.com/
author_name: Endevver
description: 'A comprehensive theme management plugin!'
version: 0.9.35
schema_version: 5
version: 0.9.36
schema_version: 6
static_version: 4
l10n_class: ThemeManager::L10N

Expand Down
2 changes: 1 addition & 1 deletion addons/ThemeManager.plugin/lib/ThemeManager/Theme.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ __PACKAGE__->install_properties( {
'id' => 'integer not null auto_increment',
'plugin_sig' => 'string(255)',
'ts_id' => 'string(255)',
'ts_label' => 'text',
'ts_label' => 'string(255)',
'theme_meta' => 'blob',
},
indexes => { plugin_sig => 1, ts_id => 1, },
Expand Down

0 comments on commit f54d2c0

Please sign in to comment.