linked district table to leader table by leader id, removed district field from leade...
[eq/.git] / setup / db_config
index 9cef5a4ea27eb45bd5fed1d96c731703abae7b1a..5adb27d961afa41780f00c7c83bdc087e353a073 100644 (file)
@@ -5,10 +5,25 @@
 # This will prevent your settings from being overwritten by future code updates.
 ################################################################################
 
+# Set the default stewardship: "High Priest" or "Elder"
+# Remember to set this same variable in the tc_config file to the same value as well
+# EX: For an Elder's Quorum, stewardship should be set to "Elder"
+# EX: For a High Priest Group, stewardship should be set to "High Priest"
+$default_stewardship = "Elder";
+
+# Database variables/settings/configuration
 $dbname = "phpgroupware";
 $dbhost = "192.168.0.4"; # This can be an IP address or name
 $dbport = 3306;
 $dbuser = "phpgroupware"; # This may require an additional '\@localhost'
 $dbpass = "phpgroupware";
+
+# Set a default area code to add to the phone number if an area code is missing
 $areacode = "970";
 
+# Set the default visiting priority (1=highest 30=lowest)
+$default_visit_pri = 30;
+
+# Set the default interview priority (1=highest 30=lowest)
+$default_interview_pri = 30;
+