defmodule Derivantes.Repo.Migrations.AddMatriculaToUser do use Ecto.Migration def change do alter table(:users) do add :matricula, :string end end end