1 drop table if exists email_templates;
2 create table email_templates (
3 id int unique auto_increment,
4 slug varchar(200) binary not null default "",
5 notes text binary not null default "",
6 from_addr varchar(100) binary not null default "",
7 to_addr varchar(100) binary not null default "",
8 cc_addr varchar(100) binary not null default "",
9 bcc_addr varchar(100) binary not null default "",
10 subject varchar(200) binary not null default "",
11 content text binary not null default ""