Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Commit

Permalink
Upgrade to contao 3.2.0 stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlins committed Nov 26, 2013
1 parent 5abf742 commit d70aef3
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 709 deletions.
7 changes: 5 additions & 2 deletions composer.json
Expand Up @@ -22,7 +22,7 @@
},
"require":{
"php":">=5.3",
"contao/core":">=3,<=3.2-RC1",
"contao/core":">=3,<3.3-dev",
"contao-community-alliance/composer-installer": "*",
"bit3/contao-assetic":"~1",
"ikimea/browser":"dev-master",
Expand All @@ -45,7 +45,10 @@
"contao": {
"sources":{
"contao":"system/modules/theme-plus"
}
},
"runonce":[
"runonce/upgrade_to_contao3_2.php"
]
},
"branch-alias": {
"dev-master": "4.3.x-dev",
Expand Down
2 changes: 1 addition & 1 deletion contao/config/database.sql
Expand Up @@ -19,7 +19,7 @@ CREATE TABLE `tl_theme_plus_variable` (
`name` varchar(255) NOT NULL default '',
`text` varchar(255) NOT NULL default '',
`url` blob NULL,
`file` blob NULL,
`file` binary(16) NULL,
`color` varchar(6) NOT NULL default '',
`size` varchar(128) NOT NULL default '',
PRIMARY KEY (`id`),
Expand Down
2 changes: 1 addition & 1 deletion contao/dca/tl_theme_plus_javascript.php
Expand Up @@ -248,7 +248,7 @@
'files' => true,
'filesOnly' => true,
'extensions'=> 'js'),
'sql' => "blob NULL"
'sql' => "binary(16) NULL"
),
'url' => array
(
Expand Down
2 changes: 1 addition & 1 deletion contao/dca/tl_theme_plus_stylesheet.php
Expand Up @@ -249,7 +249,7 @@
'filesOnly' => true,
'extensions' => 'css,less,scss,sass'
),
'sql' => "blob NULL"
'sql' => "binary(16) NULL"
),
'url' => array
(
Expand Down

0 comments on commit d70aef3

Please sign in to comment.