Fix specs, add local marker to actitivies.

This commit is contained in:
Roger Braun 2017-05-02 10:43:35 +02:00
commit 56bacc90d1
4 changed files with 15 additions and 2 deletions

View file

@ -0,0 +1,11 @@
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