diff --git a/migration/352a-trunk/273_BF2073605.sql b/migration/352a-trunk/273_BF2073605.sql new file mode 100644 index 0000000000..e426174519 --- /dev/null +++ b/migration/352a-trunk/273_BF2073605.sql @@ -0,0 +1,14 @@ +-- 25/08/2008 16:00:57 +-- +UPDATE AD_Column SET IsMandatory='Y',Updated=TO_DATE('2008-08-25 16:00:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=54742 +; + +-- 25/08/2008 16:13:53 +-- +ALTER TABLE HR_Employee MODIFY C_BPartner_ID NUMBER(10) DEFAULT NULL +; + +-- 25/08/2008 16:13:53 +-- +ALTER TABLE HR_Employee MODIFY C_BPartner_ID NOT NULL +; diff --git a/migration/352a-trunk/postgresql/273_BF2073605.sql b/migration/352a-trunk/postgresql/273_BF2073605.sql new file mode 100644 index 0000000000..8f7e8988d9 --- /dev/null +++ b/migration/352a-trunk/postgresql/273_BF2073605.sql @@ -0,0 +1,14 @@ +-- 25/08/2008 16:00:57 +-- +UPDATE AD_Column SET IsMandatory='Y',Updated=TO_TIMESTAMP('2008-08-25 16:00:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=54742 +; + +-- 25/08/2008 16:13:53 +-- +insert into t_alter_column values('hr_employee','C_BPartner_ID','NUMERIC(10)',null,'NULL') +; + +-- 25/08/2008 16:13:53 +-- +insert into t_alter_column values('hr_employee','C_BPartner_ID',null,'NOT NULL',null) +; \ No newline at end of file