meta/priv/repo/migrations/20201223114606_add_key_fing...

11 lines
176 B
Elixir
Raw Normal View History

2020-12-23 12:51:05 +01:00
defmodule RecycledCloud.Repo.Migrations.AddKeyFingerprint do
use Ecto.Migration
def change do
alter table(:keys) do
add :fingerprint, :string
end
end
end