JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
remove sql files now that it's all in inc/db_upgrade.php
[wfpl-cms.git] / admin_email_templates.sql
diff --git a/admin_email_templates.sql b/admin_email_templates.sql
deleted file mode 100644 (file)
index dc11783..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-drop table if exists email_templates;
-create table email_templates (
-    id int unique auto_increment,
-    slug varchar(200) binary not null default "",
-    notes text binary not null default "",
-    from_addr varchar(100) binary not null default "",
-    to_addr varchar(100) binary not null default "",
-    cc_addr varchar(100) binary not null default "",
-    bcc_addr varchar(100) binary not null default "",
-    subject varchar(200) binary not null default "",
-    content text binary not null default ""
-) CHARSET=utf8;