X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FGNUsocialPhotos%2Fclasses%2Fgnusocialphotoalbum.php;h=acf509a22ac0c84dc73e9534e506dac81cd61711;hb=2f86cd860231f92213950d439e9a109b7a5f11c4;hp=8b8c1dbf5a03c7b98e813deb0c1fe924b1edbaf2;hpb=f5bb0431da4d3e62d1ddf76da9651e57f2f5c6dd;p=quix0rs-gnu-social.git diff --git a/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php b/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php index 8b8c1dbf5a..acf509a22a 100644 --- a/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php +++ b/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php @@ -38,7 +38,7 @@ class GNUsocialPhotoAlbum extends Managed_DataObject public $__table = 'GNUsocialPhotoAlbum'; public $album_id; // int(11) -- Unique identifier for the album public $profile_id; // int(11) -- Profile ID for the owner of the album - public $album_name; // varchar(255) -- Title for this album + public $album_name; // varchar(191) -- Title for this album not 255 because utf8mb4 takes more space public $album_description; // text -- A description of the album public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP @@ -50,7 +50,7 @@ class GNUsocialPhotoAlbum extends Managed_DataObject 'fields' => array( 'album_id' => array('type' => 'serial', 'not null' => true, 'description' => 'Unique identifier for the album'), 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'Profile ID for the owner of the album'), - 'album_name' => array('type' => 'varchar', 'not null' => true, 'length' => 255, 'description' => 'Title for this album'), + 'album_name' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'Title for this album'), 'album_description' => array('type' => 'text', 'not null' => true, 'description' => 'A description for this album'), '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'),