12 lines
174 B
Elixir
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
|