diff options
Diffstat (limited to 'packages/db')
| -rw-r--r-- | packages/db/schema.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts index c0433d6a..5f523d21 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -228,6 +228,7 @@ export const enum AssetTypes { LINK_VIDEO = "linkVideo", LINK_HTML_CONTENT = "linkHtmlContent", BOOKMARK_ASSET = "bookmarkAsset", + USER_UPLOADED = "userUploaded", UNKNOWN = "unknown", } @@ -246,6 +247,7 @@ export const assets = sqliteTable( AssetTypes.LINK_VIDEO, AssetTypes.LINK_HTML_CONTENT, AssetTypes.BOOKMARK_ASSET, + AssetTypes.USER_UPLOADED, AssetTypes.UNKNOWN, ], }).notNull(), |
