drupflare/worker - v1.0.0
    Preparing search index...

    Function updbAbandon

    • Accepts a halted run as-is, on the record, so a new run may be prepared.

      The counterpart to updbRollback(), and NOT automatic: it is the operator saying "I have looked, and the schema is where I want it". It records the reason so the next person can see that a decision was made rather than a state being silently reused.

      Parameters

      Returns
          | {
              detail?: undefined;
              ok: boolean;
              phase?: undefined;
              reason: string;
              was?: undefined;
          }
          | {
              detail: string;
              ok: boolean;
              phase?: undefined;
              reason: string;
              was?: undefined;
          }
          | {
              detail?: undefined;
              ok: boolean;
              phase: string;
              reason: string;
              was: string
              | null;
          }