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