-
-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Allow downloading more content from a webpage and index it #215 added a new table that contains the information about assets for link bookmarks created migration code that transfers the existing data into the new table * Allow downloading more content from a webpage and index it #215 removed the old asset columns from the database updated the UI to use the data from the linkBookmarkAssets array * generalize the assets table to not be linked in particular to links * fix migrations post merge * fix missing asset ids in the getBookmarks call --------- Co-authored-by: MohamedBassem <me@mbassem.com>
- Loading branch information
1 parent
0f54a18
commit 9ce6958
Showing
6 changed files
with
1,271 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
CREATE TABLE `assets` ( | ||
`id` text PRIMARY KEY NOT NULL, | ||
`assetType` text NOT NULL, | ||
`bookmarkId` text NOT NULL, | ||
FOREIGN KEY (`bookmarkId`) REFERENCES `bookmarks`(`id`) ON UPDATE no action ON DELETE cascade | ||
); | ||
--> statement-breakpoint | ||
CREATE INDEX `assets_bookmarkId_idx` ON `assets` (`bookmarkId`); | ||
--> statement-breakpoint | ||
CREATE INDEX `assets_assetType_idx` ON `assets` (`assetType`); | ||
--> statement-breakpoint | ||
INSERT INTO `assets` (`id`, `assetType`, `bookmarkId`) | ||
SELECT `screenshotAssetId`, 'linkScreenshot', `id` | ||
FROM `bookmarkLinks` | ||
WHERE screenshotAssetId IS NOT NULL; | ||
--> statement-breakpoint | ||
INSERT INTO `assets` (`id`, `assetType`, `bookmarkId`) | ||
SELECT `fullPageArchiveAssetId`, 'linkFullPageArchive', `id` | ||
FROM `bookmarkLinks` | ||
WHERE `fullPageArchiveAssetId` IS NOT NULL; | ||
--> statement-breakpoint | ||
INSERT INTO `assets` (`id`, `assetType`, `bookmarkId`) | ||
SELECT `imageAssetId`, 'linkBannerImage', `id` | ||
FROM `bookmarkLinks` | ||
WHERE `imageAssetId` IS NOT NULL; | ||
--> statement-breakpoint | ||
ALTER TABLE `bookmarkLinks` DROP COLUMN `screenshotAssetId`; | ||
--> statement-breakpoint | ||
ALTER TABLE `bookmarkLinks` DROP COLUMN `fullPageArchiveAssetId`; | ||
--> statement-breakpoint | ||
ALTER TABLE `bookmarkLinks` DROP COLUMN `imageAssetId`; |
Oops, something went wrong.