Operand

can sell console.

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