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/20230820220618_add_chat_tags.exs

10 lines
185 B
Elixir

defmodule BdfrBrowser.Repo.Migrations.AddChatTags do
use Ecto.Migration
def change do
alter table("chats") do
add :tags, {:array, :string}, default: []
end
end
end