|
|
@@ -0,0 +1,74 @@ |
|
|
|
-- liquibase formatted sql |
|
|
|
-- changeset cyril:position |
|
|
|
|
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Resident Quantity Surveyor','Resident Quantity Surveyor','Resident QS'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Resident AQS','Resident AQS','Resident AQS'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Administrative Officer','Administrative Officer','Admin Officer'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Secretary','Secretary','Secretary'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('CPMS Assessor','CPMS Assessor','CPMS Assessor'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Co-ordinator','Co-ordinator','Co-ordinator'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Admin Supporter','Admin Supporter','Admin Supporter'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Receptionist','Receptionist','Receptionist'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Junior Secretary','Junior Secretary','Junior Secretary'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Clerk','Clerk','Clerk'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Office Assistant','Office Assistant','Office Assistant'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('HR Assistant','HR Assistant','HR Assistant'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Project Officer','Project Officer','Project Officer'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Ex. Secretary','Ex. Secretary','Ex. Secretary'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('I.T. Officer','I.T. Officer','I.T. Officer'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Resident Senior Quantity Surveyor','Resident Senior Quantity Surveyor','Resident SQS'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Obsever (SQS)','Obsever (SQS)','Obsever (SQS)'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('HR Manager','HR Manager','HR Manager'); |
|
|
|
INSERT INTO position (description,name,code) |
|
|
|
VALUES ('Senior Consultant','Senior Consultant','Senior Consultant'); |
|
|
|
UPDATE position |
|
|
|
SET description='Quantity Surveying Trainee' |
|
|
|
WHERE id=1; |
|
|
|
UPDATE position |
|
|
|
SET name='Assistant Quantity Surveyor',description='Assistant Quantity Surveyor',code='AQS' |
|
|
|
WHERE id=2; |
|
|
|
UPDATE position |
|
|
|
SET name='Quantity Surveyor',description='Quantity Surveyor' |
|
|
|
WHERE id=3; |
|
|
|
UPDATE position |
|
|
|
SET name='Senior Quantity Surveyor',description='Senior Quantity Surveyor',code='SQS' |
|
|
|
WHERE id=4; |
|
|
|
UPDATE position |
|
|
|
SET description='Assistant Manager' |
|
|
|
WHERE id=5; |
|
|
|
UPDATE position |
|
|
|
SET description='Deputy Manager' |
|
|
|
WHERE id=6; |
|
|
|
UPDATE position |
|
|
|
SET description='Manager' |
|
|
|
WHERE id=7; |
|
|
|
UPDATE position |
|
|
|
SET description='Senior Manager' |
|
|
|
WHERE id=8; |
|
|
|
UPDATE position |
|
|
|
SET description='Assistant Director' |
|
|
|
WHERE id=9; |
|
|
|
UPDATE position |
|
|
|
SET description='Deputy Director' |
|
|
|
WHERE id=10; |
|
|
|
UPDATE position |
|
|
|
SET description='Director' |
|
|
|
WHERE id=11; |