defmodule Wild.Repo.Migrations.CreateAuthors do use Ecto.Migration def change do create table(:authors) do add :name, :string add :country, :string add :bio, :string add :year_born, :string add :year_died, :string timestamps(type: :utc_datetime) end end end