mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-01-19 18:56:08 +01:00
7 lines
162 B
Elixir
7 lines
162 B
Elixir
defmodule Pleroma.Repo.Migrations.AddUUIDExtension do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
execute("create extension if not exists \"uuid-ossp\"")
|
|
end
|
|
end
|