RDBO: crm- und Kassentabellen ignorieren
authorSven Schöling <s.schoeling@linet-services.de>
Tue, 27 Sep 2011 14:06:11 +0000 (16:06 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Tue, 27 Sep 2011 14:06:11 +0000 (16:06 +0200)
SL/DB/Helper/Mappings.pm

index 5a4fc5e..b178271 100644 (file)
@@ -18,7 +18,16 @@ my @lxoffice_blacklist_permanent = qw(
 my @lxoffice_blacklist_temp = qw(
 );
 
-my @lxoffice_blacklist = (@lxoffice_blacklist_permanent, @lxoffice_blacklist_temp);
+# tables created by crm module
+my @crm_blacklist = qw(
+);
+
+# tables created by cash register
+my @cash_register_blacklist = qw(
+ekartikel ekbon ekkunde ektext erptasten
+);
+
+my @lxoffice_blacklist = (@lxoffice_blacklist_permanent, @lxoffice_blacklist_temp, @crm_blacklist, @cash_register_blacklist);
 
 # map table names to their models.
 # unlike rails we have no singular<->plural magic.