Changes between Version 13 and Version 14 of group_email


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

--

Legend:

Unmodified
Added
Removed
Modified
  • group_email

    v13 v14  
    3535* Create custom_emails:
    3636
    37 CREATE TABLE custom_emails (
     37  CREATE TABLE custom_emails (
    3838
    39   id int(11) NOT NULL auto_increment,
     39    id int(11) NOT NULL auto_increment,
    4040
    41   `name` varchar(80) NOT NULL,
     41    `name` varchar(80) NOT NULL,
    4242
    43   user_id int(11) NOT NULL,
     43    user_id int(11) NOT NULL,
    4444
    45   description text NOT NULL,
     45    description text NOT NULL,
    4646
    47   content text NOT NULL,
     47    content text NOT NULL,
    4848
    49   availability tinyint(4) NOT NULL,
     49    availability tinyint(4) NOT NULL,
    5050
    51   creator_id int(11) NOT NULL default '0',
     51    creator_id int(11) NOT NULL default '0',
    5252
    53   created date NOT NULL default '0000-00-00',
     53    created date NOT NULL default '0000-00-00',
    5454
    55   updater_id int(11) default NULL,
     55    updater_id int(11) default NULL,
    5656
    57   updated date default NULL,
     57    updated date default NULL,
    5858
    59   PRIMARY KEY  (id)
     59    PRIMARY KEY  (id)
    6060
    61 ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
     61  ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    6262
    6363* Insert into sys_functions
    6464
    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`)
    6666
    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);
    6868