Merge branch 'from/upstream-develop/tusooa/report-too-long' into 'develop'

Fix long report notes giving errors on creation

See merge request pleroma/pleroma!3679
This commit is contained in:
Haelwenn 2022-07-04 05:21:20 +00:00
commit 29f4ab640b
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,16 @@
defmodule Pleroma.Repo.Migrations.ChangeReportNotesContentToText do
use Ecto.Migration
def up do
alter table(:report_notes) do
modify(:content, :text)
end
end
# 20191203043610_create_report_notes.exs
def down do
alter table(:report_notes) do
modify(:content, :string)
end
end
end