Changes between Version 12 and Version 13 of group_email


Ignore:
Timestamp:
2011-06-30T00:07:29Z (13 years ago)
Author:
Taehyun You
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • group_email

    v12 v13  
    3333
    3434=== Database Table ===
    35 * custom_emails:
     35* Create custom_emails:
    3636
    3737CREATE TABLE custom_emails (
     38
    3839  id int(11) NOT NULL auto_increment,
     40
    3941  `name` varchar(80) NOT NULL,
     42
    4043  user_id int(11) NOT NULL,
     44
    4145  description text NOT NULL,
     46
    4247  content text NOT NULL,
     48
    4349  availability tinyint(4) NOT NULL,
     50
    4451  creator_id int(11) NOT NULL default '0',
     52
    4553  created date NOT NULL default '0000-00-00',
     54
    4655  updater_id int(11) default NULL,
     56
    4757  updated date default NULL,
     58
    4859  PRIMARY KEY  (id)
     60
    4961) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    5062
     63* Insert into sys_functions
     64
     65INSERT 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
     67VALUES (1700, 'CUSTOM_EMAIL', 'Email Template', 0, 'emailer', 'emailer/index', 'AI', 'A', 0, '0000-00-00 00:00:00', NULL, NULL);
     68