Removed Messages -> Feeds foreign key.
This commit is contained in:
parent
10f1841b54
commit
3fe08fa67d
@ -85,6 +85,5 @@ CREATE TABLE IF NOT EXISTS Messages (
|
|||||||
account_id INTEGER NOT NULL,
|
account_id INTEGER NOT NULL,
|
||||||
custom_id TEXT,
|
custom_id TEXT,
|
||||||
|
|
||||||
FOREIGN KEY (feed) REFERENCES Feeds (id),
|
|
||||||
FOREIGN KEY (account_id) REFERENCES Accounts (id)
|
FOREIGN KEY (account_id) REFERENCES Accounts (id)
|
||||||
);
|
);
|
@ -80,6 +80,5 @@ CREATE TABLE IF NOT EXISTS Messages (
|
|||||||
account_id INTEGER NOT NULL,
|
account_id INTEGER NOT NULL,
|
||||||
custom_id TEXT,
|
custom_id TEXT,
|
||||||
|
|
||||||
FOREIGN KEY (feed) REFERENCES Feeds (id),
|
|
||||||
FOREIGN KEY (account_id) REFERENCES Accounts (id)
|
FOREIGN KEY (account_id) REFERENCES Accounts (id)
|
||||||
);
|
);
|
@ -34,4 +34,7 @@ ADD COLUMN custom_id TEXT;
|
|||||||
ALTER TABLE Categories
|
ALTER TABLE Categories
|
||||||
ADD COLUMN custom_id TEXT;
|
ADD COLUMN custom_id TEXT;
|
||||||
-- !
|
-- !
|
||||||
|
ALTER TABLE Messages
|
||||||
|
DROP FOREIGN KEY feed;
|
||||||
|
-- !
|
||||||
UPDATE Information SET inf_value = '4' WHERE inf_key = 'schema_version';
|
UPDATE Information SET inf_value = '4' WHERE inf_key = 'schema_version';
|
@ -50,7 +50,7 @@ class Message {
|
|||||||
QString m_contents;
|
QString m_contents;
|
||||||
QDateTime m_created;
|
QDateTime m_created;
|
||||||
int m_feedId;
|
int m_feedId;
|
||||||
|
QString m_customId;
|
||||||
|
|
||||||
QList<Enclosure> m_enclosures;
|
QList<Enclosure> m_enclosures;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user