Advertisement
naimul64

PropertyForWeb

Feb 22nd, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.65 KB | None | 0 0
  1. create table property_for_web
  2. (
  3.   id bigint auto_increment
  4.     primary key,
  5.   property_key varchar(100) not null,
  6.   property_value varchar(255) not null,
  7.   description varchar(255) null,
  8.   constraint property_key
  9.   unique (property_key)
  10. )
  11. ;
  12.  
  13. INSERT INTO profino_rbl.property_for_web (property_key, property_value, description) VALUES ('OPS_TELCO_COMMISSION_REPORT_URL', 'https://ops.surecashbd.com/GLH_WEB/ADMIN/TECLO_COMMISSION_REPORT_NEW.aspx', null);
  14. INSERT INTO profino_rbl.property_for_web (property_key, property_value, description) VALUES ('OPS_SMS_EXPENSE_REPORT_URL', 'https://ops.surecashbd.com/GLH_WEB/ADMIN/SMS_EXPENSE_NEW.aspx', null);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement