Exposed user and url fields to shop vendors.

This commit is contained in:
JT Smith 2008-08-07 17:18:59 +00:00
parent ab1c20fa8f
commit 93a6dc0568
5 changed files with 38 additions and 19 deletions

View file

@ -3,6 +3,7 @@
- fixed: unable to purge trash
- fixed: EMS not displaying all users with a badge
- fixed: ems 2.0: ticket import/export borked
- Exposed user and url fields to shop vendors.
- fixed: ems 2.0: code cleanup
- fixed: WebGUI::Search - joinClass not documented
- fixed: thingy's checkbox field

View file

@ -35,17 +35,17 @@ updateAddressTable( $session );
addProductShipping( $session );
addGalleryImageDensity( $session );
updatePaymentDrivers( $session );
extendVendors($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 extendVendors {
my $session = shift;
print "\tExtending vendor properties..." unless $quiet;
$session->db->write("alter table vendor add column url text");
print "DONE!\n" unless $quiet;
}
# Rename Thingy_fields subtext column
sub renameThingyFieldsSubtextColumn {