hostas/priv/repo/migrations/20230605165219_create_deniz...

14 lines
239 B
Elixir
Raw Normal View History

2023-06-06 15:38:19 +00:00
defmodule Hostas.Repo.Migrations.CreateDenizens do
use Ecto.Migration
def change do
create table(:denizens) do
add :name, :string
add :handle, :string
add :password, :string
timestamps()
end
end
end