Doppelter foreign key auf oe wieder entfernt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 17 Jan 2013 15:12:43 +0000 (16:12 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 17 Jan 2013 15:12:59 +0000 (16:12 +0100)
SL/DB/MetaSetup/Order.pm
sql/Pg-upgrade2/oe_delivery_orders_foreign_keys.sql

index de072ec..05512cd 100644 (file)
@@ -83,11 +83,6 @@ __PACKAGE__->meta->setup(
       key_columns => { employee_id => 'id' },
     },
 
-    employee_obj => {
-      class       => 'SL::DB::Employee',
-      key_columns => { employee_id => 'id' },
-    },
-
     globalproject => {
       class       => 'SL::DB::Project',
       key_columns => { globalproject_id => 'id' },
index 2e2e8c9..ac92ca4 100644 (file)
@@ -19,7 +19,6 @@ ALTER TABLE oe              ADD FOREIGN KEY (cp_id)                REFERENCES co
 ALTER TABLE oe              ADD FOREIGN KEY (delivery_customer_id) REFERENCES customer      (id);
 ALTER TABLE oe              ADD FOREIGN KEY (delivery_vendor_id)   REFERENCES vendor        (id);
 ALTER TABLE oe              ADD FOREIGN KEY (department_id)        REFERENCES department    (id);
-ALTER TABLE oe              ADD FOREIGN KEY (employee_id)          REFERENCES employee      (id);
 ALTER TABLE oe              ADD FOREIGN KEY (language_id)          REFERENCES language      (id);
 ALTER TABLE oe              ADD FOREIGN KEY (payment_id)           REFERENCES payment_terms (id);
 ALTER TABLE oe              ADD FOREIGN KEY (shipto_id)            REFERENCES shipto        (shipto_id);