learning_phoenix/priv/repo/migrations/20250812135200_create_users.exs
2025-08-12 15:57:21 +02:00

13 lines
260 B
Elixir

defmodule LearningPhoenix.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :name, :string
add :email, :string
add :password, :string
timestamps(type: :utc_datetime)
end
end
end