1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 06:38:48 +00:00
akkoma/priv/repo/migrations/20170321074828_create_activity.exs
2017-03-21 09:21:52 +01:00

14 lines
245 B
Elixir

defmodule Pleroma.Repo.Migrations.CreatePleroma.Activity do
use Ecto.Migration
def change do
create table(:activities) do
add :data, :map
timestamps()
end
create index(:activities, [:data], using: :gin)
end
end