postland/priv/repo/migrations/20241024233705_add_name_to_users.exs

11 lines
188 B
Elixir
Raw Normal View History

2024-10-26 15:43:59 +00:00
defmodule Postland.Repo.Migrations.AddNameToUsers do
use Ecto.Migration
def change do
alter table("users") do
add :name, :string
add :summary, :text
end
end
end