defmodule Outlook.Repo.Migrations.CreateArticles do use Ecto.Migration def change do create table(:articles) do add :title, :string add :content, :text add :url, :string add :language, :string add :date, :utc_datetime add :author_id, references(:authors, on_delete: :nothing) timestamps() end create index(:articles, [:author_id]) end end