[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
mark.
Files modified:
Weird, this is used in several places but never created...
Patch by
![[staff profile]](https://www.dreamwidth.org/img/silk/identity/user_staff.png)
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 ;) --------------------------------------------------------------------------------