11 lines
176 B
Elixir
11 lines
176 B
Elixir
|
defmodule RecycledCloud.Repo.Migrations.AddKeyFingerprint do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:keys) do
|
||
|
add :fingerprint, :string
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|