15 lines
277 B
Elixir
15 lines
277 B
Elixir
|
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
|
||
|
end
|
||
|
end
|