Add a missing \t in the output of addIsExportable.

This commit is contained in:
Chris Nehren 2008-01-05 01:11:34 +00:00
parent 1651cbd3fb
commit 43bf612cdb

View file

@ -270,7 +270,7 @@ ENDSQL
# Add the isExportable property for all assets
sub addIsExportable {
my $session = shift;
print "Adding isExportable flag for all assets (fine-grained export control)..." unless $quiet;
print "\tAdding isExportable flag for all assets (fine-grained export control)..." unless $quiet;
$session->db->write('alter table assetData add column isExportable int(11) not null default 1');
print "DONE!\n" unless $quiet;
}