[MastoAPI][GlitchAPI] Add bookmarks

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-09-19 02:04:56 +02:00
commit cda1470e02
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE
8 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddBookmarksToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :bookmarks, {:array, :string}, null: false, default: []
end
end
end