26 lines
947 B
SQL
26 lines
947 B
SQL
-- IDEMPIERE-2540: Allowing Vendor qty break to specify breaks for all customers
|
|
-- Mar 25, 2015 12:46:56 PM IST
|
|
UPDATE AD_Column SET IsMandatory='N',Updated=TO_TIMESTAMP('2015-03-25 12:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=56928
|
|
;
|
|
|
|
-- Mar 25, 2015 12:46:59 PM IST
|
|
INSERT INTO t_alter_column values('m_productpricevendorbreak','C_BPartner_ID','NUMERIC(10)',null,'NULL')
|
|
;
|
|
|
|
-- Mar 25, 2015 12:47:00 PM IST
|
|
INSERT INTO t_alter_column values('m_productpricevendorbreak','C_BPartner_ID',null,'NULL',null)
|
|
;
|
|
|
|
-- Mar 25, 2015 12:47:00 PM IST
|
|
ALTER TABLE M_ProductPriceVendorBreak DROP CONSTRAINT cbpartner_mproductpricevendorb
|
|
;
|
|
|
|
-- Mar 25, 2015 12:47:00 PM IST
|
|
ALTER TABLE M_ProductPriceVendorBreak ADD CONSTRAINT cbpartner_mproductpricevendorb FOREIGN KEY (C_BPartner_ID) REFERENCES c_bpartner(c_bpartner_id) DEFERRABLE INITIALLY DEFERRED
|
|
;
|
|
|
|
SELECT register_migration_script('201503251255_IDEMPIERE-2540.sql') FROM dual
|
|
;
|
|
|
|
|