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