1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-18 10:59:17 +00:00
akkoma/priv/repo/migrations/20170321074828_create_activity.exs
2019-07-01 01:08:07 +00:00

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