defmodule Frenzy.Repo.Migrations.CreateFeeds do
use Ecto.Migration
def change do
create table(:feeds) do
add :title, :string
add :feed_url, :string
add :site_url, :string
add :last_updated, :naive_datetime
timestamps()
end