EMS Saved Address (#8864)

This commit is contained in:
JT Smith 2008-10-21 18:33:07 +00:00
parent 5b1eb1c095
commit 79635c0c2d
7 changed files with 47 additions and 11 deletions

View file

@ -6,6 +6,7 @@
- Moved Asset ID and Class Name fields to the Meta tab of all assets.
- Made Classname from control a subclass of ReadOnly.
- Added query keys to WebGUI::Crud.
- EMS Saved Address (#8864)
- WebGUI::Crud can now automatically resolve differences between its
definition and the table schema.
- Fixed a limit bug in the asset discovery service.
@ -15,6 +16,9 @@
- rfe #740: Thingy Pre-Text (SDH Consulting Group)
- rfe #746: use the menu title in asset manager
- rfe #549: New macro for checking spectre status. VersionTag::RequestCommit and Operation::VestionTag::www_commitVertionTag now both check for spectre status before trying to commit.
7.6.1
- changed: the list of extensions for the export system to pass through
unmodified has been moved to the configuration file under the

View file

@ -31,17 +31,19 @@ my $session = start(); # this line required
# upgrade functions go here
repairManageWorkflows($session);
addPreTextToThingyFields($session);
updateAddressBook($session);
finish($session); # this line required
#----------------------------------------------------------------------------
# Describe what our function does
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about... " unless $quiet;
# # and here's our code
# print "DONE!\n" unless $quiet;
#}
sub updateAddressBook {
my $session = shift;
print "\tAdd Organization and Email Address to address book." unless $quiet;
my $db = $session->db;
$db->write("alter table address add column organization char(255)");
$db->write("alter table address add column email char(255)");
print "DONE!\n" unless $quiet;
}
#----------------------------------------------------------------------------
sub repairManageWorkflows {