mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-16 10:39:57 +01:00
15 lines
273 B
Elixir
15 lines
273 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
|