Bumped RSS feed limit; fixed ordering (#241)

This commit is contained in:
Kieran
2024-05-15 10:15:00 -07:00
committed by GitHub
parent 2dfdb31aa4
commit d575548226
5 changed files with 23 additions and 4 deletions
@@ -0,0 +1,8 @@
defmodule Pinchflat.Repo.Migrations.AddDateIndexesToMediaItems do
use Ecto.Migration
def change do
create(index(:media_items, [:media_downloaded_at]))
create(index(:media_items, [:media_redownloaded_at]))
end
end