Ecto.Migration.alter

You're seeing just the macro alter, go back to Ecto.Migration module for more information.
Link to this macro

alter(object, list)

View Source (macro)

Alters a table.

Examples

alter table("posts") do
  add :summary, :text
  modify :title, :text
  remove :views
end