Added additional columns to user table

This commit is contained in:
Alex Tavarez
2025-09-02 18:11:13 -04:00
parent 63158c1406
commit 0b8cfa1385
6 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
defmodule Sukaato.Repo.Migrations.UserAddUserU2fColumns do
use Ecto.Migration
def change do
alter table("users") do
add :u2f_enable, :boolean, default: false
add :u2f_priority, :integer
add :u2f_device, {:array, :map}
end
end
end