Add changelog entry for hashtag following
[akkoma] / priv / repo / migrations / 20191203043610_create_report_notes.exs
1 defmodule Pleroma.Repo.Migrations.CreateReportNotes do
2 use Ecto.Migration
3
4 def change do
5 create_if_not_exists table(:report_notes) do
6 add(:user_id, references(:users, type: :uuid))
7 add(:activity_id, references(:activities, type: :uuid))
8 add(:content, :string)
9
10 timestamps()
11 end
12 end
13 end