Changes between Version 11 and Version 12 of group_email


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

--

Legend:

Unmodified
Added
Removed
Modified
  • group_email

    v11 v12  
    3333
    3434=== Database Table ===
    35 * custom_email contains:
     35* custom_emails:
    3636
    37  id | name | user_id | content | availability | creator_id | created | updater_id | updated
     37CREATE TABLE custom_emails (
     38  id int(11) NOT NULL auto_increment,
     39  `name` varchar(80) NOT NULL,
     40  user_id int(11) NOT NULL,
     41  description text NOT NULL,
     42  content text NOT NULL,
     43  availability tinyint(4) NOT NULL,
     44  creator_id int(11) NOT NULL default '0',
     45  created date NOT NULL default '0000-00-00',
     46  updater_id int(11) default NULL,
     47  updated date default NULL,
     48  PRIMARY KEY  (id)
     49) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
     50