[freeside-commits] branch master updated. 21eed35279c21d1195505107a011d5481382a7ea
Ivan
ivan at 420.am
Wed Nov 6 20:33:48 PST 2013
The branch, master has been updated
via 21eed35279c21d1195505107a011d5481382a7ea (commit)
via b1d823bed5c9d953a62f2b6245b71cbbab191bda (commit)
via b173bfdcca96222fdc1883a2fcbf2fb817001542 (commit)
from d86f30add230405cb3ff689846ecce7e639e461b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 21eed35279c21d1195505107a011d5481382a7ea
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Nov 6 20:33:46 2013 -0800
no indices on h_cdr, RT#25521
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index f312b55..8ba6020 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -210,7 +210,7 @@ sub dbdef_dist {
my %h_indices = ();
- unless ( $table eq 'cust_event' ) { #others?
+ unless ( $table eq 'cust_event' || $table eq 'cdr' ) { #others?
my %indices = $tableobj->indices;
commit b1d823bed5c9d953a62f2b6245b71cbbab191bda
Merge: b173bfd d86f30a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Nov 6 13:01:34 2013 -0800
Merge branch 'master' of git.freeside.biz:/home/git/freeside
commit b173bfdcca96222fdc1883a2fcbf2fb817001542
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Nov 4 15:03:22 2013 -0800
foreign keys, RT#13971
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm
index 8ab96cf..1a88c3a 100644
--- a/FS/FS/Record.pm
+++ b/FS/FS/Record.pm
@@ -12,7 +12,7 @@ use File::Slurp qw( slurp );
use File::CounterFile;
use Text::CSV_XS;
use DBI qw(:sql_types);
-use DBIx::DBSchema 0.42; #for foreign keys
+use DBIx::DBSchema 0.43; #0.43 for foreign keys
use Locale::Country;
use Locale::Currency;
use NetAddr::IP; # for validation
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 4e5a587..f312b55 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -3,7 +3,7 @@ package FS::Schema;
use vars qw(@ISA @EXPORT_OK $DEBUG $setup_hack %dbdef_cache);
use subs qw(reload_dbdef);
use Exporter;
-use DBIx::DBSchema 0.42; #0.42 for foreign keys
+use DBIx::DBSchema 0.43; #0.43 for foreign keys
use DBIx::DBSchema::Table;
use DBIx::DBSchema::Column;
use DBIx::DBSchema::Index;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/Record.pm | 2 +-
FS/FS/Schema.pm | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list