Sha256: 8811d53bd03593ed63894daeac2b532f4dffe34eca9a10b9c8780f6fbcc869b4

Contents?: true

Size: 396 Bytes

Versions: 161

Compression:

Stored size: 396 Bytes

Contents

-- Create the trigger which will call out function every time a row in pathology_observations
-- is inserted or updated
DROP TRIGGER IF EXISTS update_current_observation_set_trigger ON pathology_observations;
CREATE TRIGGER update_current_observation_set_trigger
  AFTER INSERT OR UPDATE
  ON pathology_observations
  FOR EACH ROW EXECUTE PROCEDURE update_current_observation_set_from_trigger();

Version data entries

161 entries across 161 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.rc9 db/triggers/update_current_observation_set_trigger_v01.sql