1 2 3 4 5 6 7 8 9 10 11 12 13 14
defmodule Pleroma.Repo.Migrations.CreateRichMediaCard do use Ecto.Migration def change do create table(:rich_media_card) do add(:url_hash, :bytea) add(:fields, :map) timestamps() end create(unique_index(:rich_media_card, [:url_hash])) end end