Add migration to remove old feed data

This commit is contained in:
Shadowfacts 2019-10-31 13:47:34 -04:00
parent 27dd2c4a8e
commit b91062cc22
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
defmodule Frenzy.Repo.Migrations.RemoveOldFeedsData do
use Ecto.Migration
def change do
alter table(:feeds) do
remove :filter_enabled
remove :scrape_remote_content
end
drop table(:rules)
drop table(:filters)
end
end