#================================================================================================================================= Date : 02-10-2020 Ticket Name : 926-different-between-assign-and-reassign Author Name : saravanamuthul ------------------------------- alter table tbl_user_credits MODIFY type smallint(3) DEFAULT NULL COMMENT '1-PURCHASE/2-ASSIGN/3-DEDUCTED/4-REVERTED/5-ADMINDEDUCTED/6-POSTPAID/7-RE_ASSIGN'; #================================================================================================================================= #================================================================================================================================= Date : 11-02-2021 Ticket Name : 204-should-ask-for-mobile-number-while-login-and-verify-the-mobile-otp Author Name : Sridhar ------------------------------- ALTER TABLE users ADD COLUMN mobile_number varchar(15); ALTER TABLE users ADD COLUMN isVerified tinyint(1) default 0; #================================================================================================================================= #================================================================================================================================= Date : 07-06-2021 Ticket Name : 237-add-account-category Author Name : saravanamuthul ------------------------------- alter table tbl_profiles add account_category tinyint(1) DEFAULT '0' COMMENT '1-Enterprise, 2-SME, 3-Retail, 4-Agency' after account_type; #================================================================================================================================= #================================================================================================================================= Date : 02-07-2021 Ticket Name : 1071-content-customise-validation-disable-based-on-gateway-and-add-the-content-templateid Author Name : Saravanamuthu l ------------------------------- alter table tbl_suggested_content drop suggestion_type; alter table tbl_suggested_content add updated_on datetime DEFAULT NULL; alter table tbl_suggested_content add updated_by int(11) DEFAULT NULL; alter table tbl_suggested_content add sms_template_id int DEFAULT NULL; alter table tbl_suggested_content add sender_id int DEFAULT NULL; alter table tbl_suggested_content add parent_id int DEFAULT NULL; #================================================================================================================================= #================================================================================================================================= Date : 20-07-2021 Ticket Name : 1093-add-cps-based-on-the-operator-each-campaign-data Author Name : Saravanamuthu l ------------------------------- alter table tbl_profiles add `numeric_cps_raw_data` decimal(4,3) DEFAULT '0.075'; alter table tbl_profiles add `numeric_cps_my_data` decimal(4,3) DEFAULT '0.075'; alter table tbl_profiles add `numeric_cps_whistle_data` decimal(4,3) DEFAULT '0.75'; alter table tbl_profiles add `numeric_cps_whistle_smart_phone_data` decimal(4,3) DEFAULT '0.075'; alter table tbl_profiles add `numeric_cps_pincode_data` decimal(4,3) DEFAULT '0.075'; #================================================================================================================================= #================================================================================================================================= Date : 24-08-2021 Author Name : Saravanamuthu l ------------------------------- alter table tbl_new_server drop affiliate_id; alter table tbl_new_server drop signup_id; alter table tbl_server_url drop affiliate_id; alter table tbl_server_url drop signup_id; alter table tbl_server_account drop affiliate_id; alter table tbl_server_account drop signup_id; alter table tbl_sender_details drop affiliate_id; alter table tbl_sender_details drop signup_id; ALTER TABLE tbl_sender_details MODIFY sender_name varchar(50) CHARACTER SET binary; ALTER TABLE tbl_sender_details ADD UNIQUE server_parent_sender (server_id, parent_id,sender_name); #================================================================================================================================= #================================================================================================================================= Date : 27-08-2021 Author Name : Saravanamuthu l ------------------------------- ALTER TABLE tbl_profiles add ui_status tinyint(1) DEFAULT 1 COMMENT '0-Dont-Display, 1-Display' after status; #=================================================================================================================================