This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
bdfr-browser/priv/repo/migrations/20230821110436_add_chat_message_bookmarks.exs

10 lines
181 B
Elixir

defmodule BdfrBrowser.Repo.Migrations.AddChatMessageBookmarks do
use Ecto.Migration
def change do
alter table("messages") do
add :bookmark, :string
end
end
end