summaryrefslogtreecommitdiffstats
path: root/src/libraries/qmfclient/resources/mailaccountfolders.sqlite.sql
blob: c4c8612cf8c8e75bf08b83ba14521cb196250919 (plain)
1
2
3
4
5
6
7
CREATE TABLE mailaccountfolders ( 
    id INTEGER NOT NULL,
    foldertype INTEGER NOT NULL,
    folderid INTEGER NOT NULL,
    PRIMARY KEY (id, foldertype),
    FOREIGN KEY (id) REFERENCES mailaccounts(id),
    FOREIGN KEY (folderid) REFERENCES mailfolders(id));