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/20240206175426_create_queries.exs
Lenses
(coming soon!)
defmodule Op.Repo.Migrations.CreateQueries do
use Ecto.Migration
def change do
create table(:queries) do
add :label, :string, null: false
add :source, :string, null: false
add :code, :string, null: false
add :lang, :string, null: false
add :applies, :utc_datetime
add :expires, :utc_datetime
add :cache, :string
add :chronology, :string
add :signed, :string, null: false
timestamps(type: :utc_datetime)
end
end
end