mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-03-03 12:50 am

[dw-free] Weird, this is used in several places but never created...

[commit: http://hg.dwscoalition.org/dw-free/rev/0331fcf0a720]

Weird, this is used in several places but never created...

Patch by [staff profile] mark.

Files modified:
  • bin/upgrading/update-db-general.pl
--------------------------------------------------------------------------------
diff -r 0f2d825b5ddc -r 0331fcf0a720 bin/upgrading/update-db-general.pl
--- a/bin/upgrading/update-db-general.pl	Mon Mar 02 21:12:00 2009 +0000
+++ b/bin/upgrading/update-db-general.pl	Tue Mar 03 00:50:00 2009 +0000
@@ -3184,6 +3184,15 @@ CREATE TABLE import_status (
 )
 EOC
 
+register_tablecreate('email_aliases', <<'EOC');
+CREATE TABLE email_aliases (
+    alias VARCHAR(255) NOT NULL,
+    rcpt VARCHAR(255) NOT NULL,
+
+    PRIMARY KEY (alias)
+)
+EOC
+
 # NOTE: new table declarations go ABOVE here ;)
 
 
--------------------------------------------------------------------------------