derivantes/priv/repo/migrations/20240610131325_add_matricula_to_user.exs
2024-06-18 11:53:49 -03:00

12 lines
174 B
Elixir

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