mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-05 08:03:11 +00:00
10 lines
206 B
Elixir
10 lines
206 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
|