1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-19 11:29:17 +00:00
akkoma/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
2019-01-28 04:47:32 +01:00

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