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