mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
13 lines
214 B
Elixir
13 lines
214 B
Elixir
defmodule Chess.Repo.Migrations.CreateUsers do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:users) do
|
|
add :username, :string
|
|
add :password_hash, :string
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|