]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Avatar table url field now 'text', maybe use filename as unique key?
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 28 Feb 2015 11:56:42 +0000 (12:56 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 28 Feb 2015 11:56:42 +0000 (12:56 +0100)
classes/Avatar.php

index 3b3317b3ef5ed9f58e066a6e95f43aac9392f696..420f384e13e185e97813077dc43c87cf44fc4513 100644 (file)
@@ -33,13 +33,13 @@ class Avatar extends Managed_DataObject
                 'height' => array('type' => 'int', 'not null' => true, 'description' => 'image height'),
                 'mediatype' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'file type'),
                 'filename' => array('type' => 'varchar', 'length' => 191, 'description' => 'local filename, if local'),
-                'url' => array('type' => 'varchar', 'length' => 191, 'description' => 'avatar location'),
+                'url' => array('type' => 'text', 'description' => 'avatar location, not indexed - do not use in WHERE statement'),
                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
             ),
             'primary key' => array('profile_id', 'width', 'height'),
             'unique keys' => array(
-                'avatar_url_key' => array('url'),
+//                'avatar_filename_key' => array('filename'),
             ),
             'foreign keys' => array(
                 'avatar_profile_id_fkey' => array('profile', array('profile_id' => 'id')),