Difference between revisions of "Database Table: email aliases"

From Dreamwidth Notes
Jump to: navigation, search
m (Created page with '{{Database Table|name=email_aliases|table type=global}} Category:Database Tables Needing Description = Definition = <source lang="sql"> CREATE TABLE email_aliases ( alia…')
(No difference)

Revision as of 12:32, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table.

Definition

CREATE TABLE email_aliases (
    alias VARCHAR(255) NOT NULL,
    rcpt VARCHAR(255) NOT NULL,
 
    PRIMARY KEY (alias)
)

Relationships