Coder Social home page Coder Social logo

DictamenOD about hcd HOT 2 CLOSED

matudelatower avatar matudelatower commented on June 12, 2024
DictamenOD

from hcd.

Comments (2)

raulneis avatar raulneis commented on June 12, 2024

Para rellenar los dictamen_o_d viejos con los id de dictámen (en función de los id de expediente que ya están cargados):

UPDATE dictamen_o_d
SET
  dictamen_id =
(
    SELECT
      dictamen.id
    FROM dictamen
    WHERE dictamen.expediente_id = dictamen_o_d.expediente_id
)
WHERE dictamen_id IS NULL

from hcd.

raulneis avatar raulneis commented on June 12, 2024

Migración a la nueva tabla de logs

De log_expediente a log:

INSERT INTO "log"
(
  "activo"
, "actualizado_por_id"
, "creado_por_id"
, "entity_class"
, "entity_id"
, "fecha_actualizacion"
, "fecha_creacion"
, "log"
) select
  "activo",
  "actualizado_por_id",
  "creado_por_id",
  'MesaEntradaBundle\Entity\Expediente',
  "expediente_id",
  "fecha_actualizacion",
  "fecha_creacion",
  "log"
FROM log_expediente
WHERE expediente_id IS NOT NULL

from hcd.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.