13 lines
215 B
Elixir
13 lines
215 B
Elixir
|
defmodule Frenzy.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
|