2017-05-02 08:43:35 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddLocalFieldToActivities do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:activities) do
|
|
|
|
add :local, :boolean, default: true
|
|
|
|
end
|
|
|
|
|
2019-07-01 01:08:07 +00:00
|
|
|
create_if_not_exists index(:activities, [:local])
|
2017-05-02 08:43:35 +00:00
|
|
|
end
|
|
|
|
end
|