ca36dd12e2
(Also use only one field for public/private key pem) Signed-off-by: Thomas Citharel <tcit@tcit.fr>
16 lines
238 B
Elixir
16 lines
238 B
Elixir
defmodule Eventos.Repo.Migrations.AddUUIDToComments do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
alter table(:comments) do
|
|
add :uuid, :uuid
|
|
end
|
|
end
|
|
|
|
def down do
|
|
alter table(:comments) do
|
|
remove :uuid
|
|
end
|
|
end
|
|
end
|