Stages & jobs

  1. Default Stage

  2. Release

    Requires a user to start manually

Code commits

Git

  • Ivo Ulrich <teleivo@users.noreply.github.com>

    Ivo Ulrich <teleivo@users.noreply.github.com> 9d006ec0157dd50b4d75e2640a7428aacd4e1803

    Merge pull request #454 from teleivo/radordertable-fix
    Remove radiology_order.order_id autoIncrement

  • teleivo <mrteleivo@gmail.com>

    teleivo <mrteleivo@gmail.com> f52d973449b2fccfb230e603a862be9e7232019b

    Remove radiology_order.order_id autoIncrement
    the radiology_order.order_id primary key was set to autoIncrement which makes
    it possible to insert a new radiology_order using

    "insert into radiology_order values (NULL);"

    if there is a test_order matching the current auto_increment value of the
    radiology_order. This should not be possible as this can cause a
    radiology_order being attached to a test_order which is in fact not a
    radiology_order.

    Not-null constraint on radiology_order.order_id and Foreign key constraint to test_order.order_id
    together ensure integrity of radiology_order data.

    • api/src/main/resources/liquibase.xml (version f52d973449b2fccfb230e603a862be9e7232019b)