diff options
author | ivan <ivan> | 2006-01-31 02:59:59 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-01-31 02:59:59 +0000 |
commit | 7066204f45124e0100d5330cce63584ff9e4bacb (patch) | |
tree | 5122b4f41b4ed686eae010c000710099e49b0491 | |
parent | 0a4a314b33a22b314ac5c4c85840a4bbff49cdf3 (diff) |
fix "table not found" dbdef error message to recommend freeside-upgrade instead create + dbdef-create
-rw-r--r-- | FS/FS/Record.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 19da3d181..4a0fe3fd2 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); |