diff --git a/features/mobile-plugins-feature/mobile-base-plugin-feature/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgresql.sql b/features/mobile-plugins-feature/mobile-base-plugin-feature/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgresql.sql index 1ada59fdc..c03e68e4a 100644 --- a/features/mobile-plugins-feature/mobile-base-plugin-feature/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgresql.sql +++ b/features/mobile-plugins-feature/mobile-base-plugin-feature/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgresql.sql @@ -2,11 +2,11 @@ -- Table IOS_FEATURE -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS IOS_FEATURE ( - ID SERIAL NOT NULL, + FEATURE_ID SERIAL NOT NULL, CODE VARCHAR(45) NOT NULL, NAME VARCHAR(100) NULL, DESCRIPTION VARCHAR(200) NULL, - PRIMARY KEY (ID) + PRIMARY KEY (FEATURE_ID) ); -- -----------------------------------------------------