Add an index on podcastEpisodes.publishedAt

This commit is contained in:
mikiher 2025-03-09 17:34:00 +02:00
parent 7f7ae97070
commit 82af8d19f2
4 changed files with 60 additions and 2 deletions

View file

@ -122,6 +122,10 @@ class PodcastEpisode extends Model {
{
name: 'podcastEpisode_createdAt_podcastId',
fields: ['createdAt', 'podcastId']
},
{
name: 'podcast_episodes_published_at',
fields: ['publishedAt']
}
]
}