chore: add migrations to git

This commit is contained in:
2026-05-12 16:00:46 +02:00
parent 68136d1602
commit 25f411a3df
9 changed files with 109 additions and 1 deletions
@@ -0,0 +1,9 @@
defmodule Localiser.Repo.Migrations.AddIsAdminToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :is_admin, :boolean, default: false, null: false
end
end
end