This commit is contained in:
Harryxzy 2023-08-08 11:05:52 +08:00
parent 190771037e
commit c977109cb7
6 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,12 @@
alter table hrsa_salary_sob_item
add rounding_mode NUMBER null;
/
alter table hrsa_salary_sob_item
add pattern NUMBER null;
/
alter table hrsa_salary_sob_item
add value_type NUMBER null;
/

View File

@ -0,0 +1,12 @@
alter table hrsa_salary_sob_item
add rounding_mode NUMBER null;
/
alter table hrsa_salary_sob_item
add pattern NUMBER null;
/
alter table hrsa_salary_sob_item
add value_type NUMBER null;
/

View File

@ -0,0 +1,4 @@
ALTER TABLE hrsa_salary_sob_item
ADD COLUMN rounding_mode int NULL,
ADD COLUMN pattern int NULL,
ADD COLUMN value_type int NULL;

View File

@ -0,0 +1,11 @@
alter table hrsa_salary_sob_item
add rounding_mode NUMBER null
/
alter table hrsa_salary_sob_item
add pattern NUMBER null
/
alter table hrsa_salary_sob_item
add value_type NUMBER null
/

View File

@ -0,0 +1,4 @@
ALTER TABLE hrsa_salary_sob_item
ADD COLUMN rounding_mode int NULL,
ADD COLUMN pattern int NULL,
ADD COLUMN value_type int NULL;

View File

@ -0,0 +1,5 @@
ALTER TABLE hrsa_salary_sob_item
ADD rounding_mode int NULL,
pattern int NULL,
value_type int NULL
GO