Current section
Files
Jump to
Current section
Files
priv/test_repo/migrations/20190325195404_create_users.exs
defmodule Auth.TestRepo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users, primary_key: false) do
add(:id, :binary_id, primary_key: true)
add(:name, :string)
add(:email, :string)
add(:password_hash, :string)
timestamps()
end
end
end