Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: op
> ./priv/repo/migrations/20250807200747_communique_message_channel.exs
Lenses
(coming soon!)
defmodule Op.Repo.Migrations.CommuniqueMessageChannel do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
alter table(:messages) do
add :channel, :text, null: false
end
end
def down do
alter table(:messages) do
remove :channel
end
end
end