defmodule Mobilizon.Repo.Migrations.AddUUIDToComments do
use Ecto.Migration
def up do
alter table(:comments) do
add(:uuid, :uuid)
end
def down do
remove(:uuid)