Basic status creation and retrieval.

This commit is contained in:
Roger Braun 2017-03-21 17:53:20 +01:00
commit 9a8850eb9e
14 changed files with 272 additions and 9 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddFollowingListToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :following, :map
end
end
end

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddApIdToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :ap_id, :string
end
end
end