View file install/import/Version3/GroupPhotoComments.php

File size: 782B
<?php

class Install_Import_Version3_GroupPhotoComments extends Install_Import_Version3_AbstractComments
{
  protected $_fromResourceType = 'groupmedia';

  protected $_toResourceType = 'group_photo';
}


/*
CREATE TABLE IF NOT EXISTS `se_groupmediacomments` (
  `groupmediacomment_id` int(9) NOT NULL auto_increment,
  `groupmediacomment_groupmedia_id` int(9) NOT NULL default '0',
  `groupmediacomment_authoruser_id` int(9) NOT NULL default '0',
  `groupmediacomment_date` int(14) NOT NULL default '0',
  `groupmediacomment_body` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY  (`groupmediacomment_id`),
  KEY `INDEX` (`groupmediacomment_groupmedia_id`,`groupmediacomment_authoruser_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
 *
 */