summaryrefslogtreecommitdiff
path: root/core/helpers/core_installer.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-05 09:42:47 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-05 09:42:47 +0000
commitae00f739445717885e2fc82e241bae38b7e58d44 (patch)
tree96feb40e2ffbaa61a46500288d3e7a8fe831d155 /core/helpers/core_installer.php
parente35c154414ac73788645666b3e4e71722706c6cd (diff)
* Add thumbnail and resize dimensions to the item table and use them
properly in the theme. * Move thumbnail and resize generation down into the model for consistency. * Add a sample thumbnail for albums * Fix a bug in the ORM to clear the cache when we reload an object. * Add Kohana docs to the scaffold.
Diffstat (limited to 'core/helpers/core_installer.php')
-rw-r--r--core/helpers/core_installer.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php
index 7d83236a..bbcf9bd1 100644
--- a/core/helpers/core_installer.php
+++ b/core/helpers/core_installer.php
@@ -49,6 +49,10 @@ class core_installer {
`right` int(9) NOT NULL,
`parent_id` int(9) NOT NULL,
`level` int(9) NOT NULL,
+ `thumbnail_width` int(9) default NULL,
+ `thumbnail_height` int(9) default NULL,
+ `resize_width` int(9) default NULL,
+ `resize_height` int(9) default NULL,
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`),
KEY `type` (`type`))