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/20170502083023_add_local_field_to_activities.exs
2017-05-02 10:43:35 +02:00

11 lines
234 B
Elixir

defmodule Pleroma.Repo.Migrations.AddLocalFieldToActivities do
use Ecto.Migration
def change do
alter table(:activities) do
add :local, :boolean, default: true
end
create index(:activities, [:local])
end
end