mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
9 lines
187 B
Elixir
9 lines
187 B
Elixir
defmodule Philomena.Repo.Migrations.AddSeniorStaff do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add :senior_staff, :boolean, default: false
|
|
end
|
|
end
|
|
end
|