This commit is contained in:
zack 2024-10-21 19:20:35 -04:00
parent 561ea7543d
commit 43e6b6d318
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
25 changed files with 8063 additions and 374 deletions

View file

@ -0,0 +1,9 @@
defmodule Zoeyscomputer.Repo.Migrations.AddUserAdminField do
use Ecto.Migration
def change do
alter table(:users) do
add :admin, :boolean
end
end
end