Changes between Version 12 and Version 13 of group_email
- Timestamp:
- 2011-06-30T00:07:29Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
group_email
v12 v13 33 33 34 34 === Database Table === 35 * custom_emails:35 * Create custom_emails: 36 36 37 37 CREATE TABLE custom_emails ( 38 38 39 id int(11) NOT NULL auto_increment, 40 39 41 `name` varchar(80) NOT NULL, 42 40 43 user_id int(11) NOT NULL, 44 41 45 description text NOT NULL, 46 42 47 content text NOT NULL, 48 43 49 availability tinyint(4) NOT NULL, 50 44 51 creator_id int(11) NOT NULL default '0', 52 45 53 created date NOT NULL default '0000-00-00', 54 46 55 updater_id int(11) default NULL, 56 47 57 updated date default NULL, 58 48 59 PRIMARY KEY (id) 60 49 61 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 50 62 63 * Insert into sys_functions 64 65 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`) 66 67 VALUES (1700, 'CUSTOM_EMAIL', 'Email Template', 0, 'emailer', 'emailer/index', 'AI', 'A', 0, '0000-00-00 00:00:00', NULL, NULL); 68