mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +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
|