frenzy/priv/repo/migrations/20190323152545_create_users...

13 lines
215 B
Elixir
Raw Normal View History

2019-03-23 17:53:53 +00:00
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