Changes between Version 21 and Version 22 of group_email


Ignore:
Timestamp:
2011-07-05T22:01:49Z (13 years ago)
Author:
Taehyun You
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • group_email

    v21 v22  
    6868  --
    6969
    70   INSERT INTO `sys_functions` (`id`, `function_code`, `function_name`, `parent_id`, `controller_name`, `url_link`, `permission_type`, `record_status`, `creator_id`, `created`, `updater_id`, `modified`)
    71 
     70  INSERT INTO `sys_functions` (`id`, `function_code`, `function_name`, `parent_id`, `controller_name`, `url_link`, `permission_type`, `record_status`, `creator_id`, `created`, `updater_id`, `modified`)
    7271  VALUES (1700, 'EMAIL_TEMPLATE', 'Email Templates', 0, 'emailer', 'emailer/index', 'AI', 'A', 0, '0000-00-00 00:00:00', NULL, NULL);
    7372
     
    9897  -- Dumping data for table `email_merges`
    9998  --
    100 
    101   INSERT INTO `email_merges` (`id`, `key`, `value`, `field_name`, `created`, `modified`) VALUES
    102 
    103   (1, 'Username', '<<USERNAME>>', 'username', '2011-07-05 11:35:06', '2011-07-05 11:35:11'),
    104 
    105   (2, 'First Name', '<<FIRSTNAME>>', 'first_name', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
    106 
    107   (3, 'Last Name', '<<LASTNAME>>', 'last_name', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
    108 
    109   (4, 'Email Address', '<<EMAIL>>', 'email', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
    110 
    111 
     99  INSERT INTO `email_merges` (`id` ,`key` ,`value` ,`field_name` ,`created` ,`modified`)
     100  VALUES
     101  (NULL , 'Username', '<<USERNAME>>', 'username', '', ''),
     102  (NULL , 'First Name', '<<FIRSTNAME>>', 'first_name', '', ''),
     103  (NULL , 'Last Name', '<<LASTNAME>>', 'last_name', '', ''),
     104  (NULL , 'Email Address', '<<Email>>', 'email', '', '');