mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-12-29 05:35:18 +01:00
14 lines
274 B
Elixir
14 lines
274 B
Elixir
defmodule Pleroma.Repo.Migrations.CreatePleroma.Activity do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:activities) do
|
|
add(:data, :map)
|
|
|
|
timestamps()
|
|
end
|
|
|
|
create_if_not_exists(index(:activities, [:data], using: :gin))
|
|
end
|
|
end
|