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:
commit
29f4ab640b
2 changed files with 39 additions and 0 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue