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

14 lines
239 B
Elixir

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