blob: c5a59ecba4cbb2af560581172ad555058f8650ae (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | defmodule Pleroma.Repo.Migrations.CreatePleroma.Object do
  use Ecto.Migration
  def change do
    create_if_not_exists table(:objects) do
      add(:data, :map)
      timestamps()
    end
  end
end
 |