feat(db): user

This commit is contained in:
Anhgelus Morhtuuzh 2025-08-12 15:57:21 +02:00
parent 2142d7eddf
commit 3fd0565227
Signed by: anhgelus
GPG key ID: 617773CACE89052C
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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