chiya/priv/repo/migrations/20230703173933_add_user_fields.exs

12 lines
206 B
Elixir
Raw Permalink Normal View History

2023-07-03 20:16:50 +02:00
defmodule Chiya.Repo.Migrations.AddUserFields do
use Ecto.Migration
def change do
alter table(:users) do
add :handle, :string
add :name, :string
add :bio, :text
end
end
end