From ee3f055eb8ec3314ac7d7d09ab7f95971d874488 Mon Sep 17 00:00:00 2001 From: AlexandraLivadas Date: Wed, 12 Aug 2020 18:14:38 -0400 Subject: [PATCH] [Raisinbread] Added BMI instructions to RB 'help' table to test help_editor --- raisinbread/RB_files/RB_help.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/raisinbread/RB_files/RB_help.sql b/raisinbread/RB_files/RB_help.sql index 28b5f0e222c..117bf372930 100644 --- a/raisinbread/RB_files/RB_help.sql +++ b/raisinbread/RB_files/RB_help.sql @@ -1,5 +1,6 @@ SET FOREIGN_KEY_CHECKS=0; TRUNCATE TABLE `help`; LOCK TABLES `help` WRITE; +INSERT INTO `help` (`helpID`, `parentID`, `hash`, `topic`, `content`, `created`, `updated`) VALUES (123,12,'hash','BMI Instructions','The BMI calculator instrument can calculate the BMI and BMI Classification of a visitor. The two required fields for this instrument are the Date of Administration of the instrument and the Examiner name. The height and weight of the visitor must then be entered in either standard or metric units. The instrument will not accept an entry where the height and weight are given in both units. After this information is given, the instrument will calculate the BMI and BMI Classification of the visitor.',NULL,NULL); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1;