summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191203043610_create_report_notes.exs
blob: a4f8c096d053440355fcf927a0e30fee60e05a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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