fixed a search indexer problem and a tabs.css conflict with tinymce

This commit is contained in:
Martin Kamerbeek 2006-09-01 14:43:16 +00:00
parent 8045055d12
commit 518d820a5e
5 changed files with 18 additions and 12 deletions

View file

@ -21,16 +21,18 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
dropLineageInAssetIndex($session);
finish($session); # this line required
##-------------------------------------------------
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
# # and here's our code
#}
#-------------------------------------------------
sub dropLineageInAssetIndex {
my $session = shift;
print "\tDropping lineage column in assetIndex table.\n" unless ($quiet);
$session->db->write('alter table assetIndex drop column lineage');
}