Current section

Files

Jump to
boruta priv repo migrations 20210202095024_add_key_pair_to_clients.exs
Raw

priv/repo/migrations/20210202095024_add_key_pair_to_clients.exs

defmodule Boruta.Repo.Migrations.AddKeyPairToClients do
use Ecto.Migration
def change do
alter table(:clients) do
add :public_key, :text, null: false
add :private_key, :text, null: false
end
end
end