Diffuser/priv/repo/migrations/20220904223206_add_user_tab...

12 lines
214 B
Elixir

defmodule Diffuser.Repo.Migrations.AddUserTable do
use Ecto.Migration
def change do
create table(:users) do
add :ip_address, :string
add :username, :string
timestamps()
end
end
end