From ae00f739445717885e2fc82e241bae38b7e58d44 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 5 Nov 2008 09:42:47 +0000 Subject: * 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. --- core/helpers/core_installer.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/helpers/core_installer.php') 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`)) -- cgit v1.2.3