From a7a4eeef09ee8929bb9ca563eb2bc52d198d202f Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Wed, 7 May 2014 09:51:37 +0200 Subject: [PATCH] width and height are now properties in the File class --- classes/File.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/classes/File.php b/classes/File.php index d8b20ea678..4e85e542d5 100644 --- a/classes/File.php +++ b/classes/File.php @@ -33,6 +33,8 @@ class File extends Managed_DataObject public $date; // int(4) public $protected; // int(4) public $filename; // varchar(255) + public $width; // int(4) + public $height; // int(4) public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP public static function schemaDef()