From e143770fc296e34862d95272fc79a56fa9d20a34 Mon Sep 17 00:00:00 2001 From: Georgi Nikolov Date: Sat, 25 Jan 2025 17:01:26 +0200 Subject: Added additional table column for the favicon in the database With that commit handled the saving of that favicon as well --- migrations/00-initial.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'migrations/00-initial.sql') diff --git a/migrations/00-initial.sql b/migrations/00-initial.sql index f50d9d2..0edf29b 100644 --- a/migrations/00-initial.sql +++ b/migrations/00-initial.sql @@ -24,6 +24,7 @@ CREATE TABLE IF NOT EXISTS Webpages ( Date DATETIME NOT NULL, Visits INT NOT NULL, RequesterUID INT NOT NULL, + FaviconPath VARCHAR(512) NOT NULL, PRIMARY KEY (WID), FOREIGN KEY (RequesterUID) REFERENCES Users(UID) ); -- cgit v1.2.3