summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2006-01-31 03:00:00 +0000
committerivan <ivan>2006-01-31 03:00:00 +0000
commit46a07c0957a9903427f88880ad48a6401147bea4 (patch)
tree510c01429a4001d0e1dfb3aacb89618fcea8c76a
parent8f5c91d6c7a8dc85a8b6768a149b4c7b3e144c38 (diff)
fix "table not found" dbdef error message to recommend freeside-upgrade instead create + dbdef-create
-rw-r--r--FS/FS/Record.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm
index 887c8dcd4..3b3791155 100644
--- a/FS/FS/Record.pm
+++ b/FS/FS/Record.pm
@@ -250,7 +250,7 @@ sub qsearch {
my $table = $cache ? $cache->table : $stable;
my $dbdef_table = dbdef->table($table)
or die "No schema for table $table found - ".
- "do you need to create it or run dbdef-create?";
+ "do you need to run freeside-upgrade?";
my $pkey = $dbdef_table->primary_key;
my @real_fields = grep exists($record->{$_}), real_fields($table);