defmodule Postland.Repo.Migrations.AddKeysToUser do use Ecto.Migration def change do alter table("users") do add :private_key, :text, null: false add :public_key, :text, null: false end end end