mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-02 13:28:41 +00:00
9 lines
207 B
Elixir
9 lines
207 B
Elixir
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
|