mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 08:59:50 +00:00
13 lines
324 B
Elixir
13 lines
324 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateReportNotes do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:report_notes) do
|
|
add(:user_id, references(:users, type: :uuid))
|
|
add(:activity_id, references(:activities, type: :uuid))
|
|
add(:content, :string)
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|