pleroma/priv/repo/migrations/20181214121049_add_bookmark...

10 lines
207 B
Elixir
Raw Normal View History

2018-09-19 02:04:56 +02:00
defmodule Pleroma.Repo.Migrations.AddBookmarksToUsers do
use Ecto.Migration
def change do
alter table(:users) do
2019-10-08 14:16:39 +02:00
add(:bookmarks, {:array, :string}, null: false, default: [])
2018-09-19 02:04:56 +02:00
end
end
end