X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FGNUsocialPhotos%2Fclasses%2Fgnusocialphotoalbum.php;h=acf509a22ac0c84dc73e9534e506dac81cd61711;hb=2f86cd860231f92213950d439e9a109b7a5f11c4;hp=208c341851d013a48271641175c1e8cbb9640a7f;hpb=3a7261f70a62e28f47b45847c8ab31ff6f441a61;p=quix0rs-gnu-social.git diff --git a/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php b/plugins/GNUsocialPhotos/classes/gnusocialphotoalbum.php index 208c341851..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 @@ -48,9 +48,9 @@ class GNUsocialPhotoAlbum extends Managed_DataObject { return array( 'fields' => array( - 'album_id' => array('type' => 'int', 'not null' => true, 'description' => 'Unique identifier for the album'), + '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'),