mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
12 lines
250 B
Elixir
12 lines
250 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_if_not_exists(index(:activities, [:local]))
|
|
end
|
|
end
|