INSERT INTO xlite_config VALUES ('enable_sale_price','Enable \"Market price\" feature','N','General',295,'checkbox');
INSERT INTO xlite_config VALUES ('you_save','Enable \"save\" label (for Market Price)','N','General',296,'select');
INSERT INTO xlite_config VALUES ('clear_cc_info','Clear credit cards info from the database on order status change','N','General',500,'select');
INSERT INTO xlite_config VALUES ('time_zone','Time zone','','General',680,'select');
INSERT INTO xlite_config VALUES('smtp_server','SMTP server','','Email',100,'separator');
INSERT INTO xlite_config VALUES('use_smtp','Use SMTP server','N','Email',110,'checkbox');
INSERT INTO xlite_config VALUES('smtp_server_url','SMTP server','','Email',120,'text');
INSERT INTO xlite_config VALUES('smtp_server_port','SMTP port','25','Email',130,'text');
INSERT INTO xlite_config VALUES('use_smtp_auth','Use authentication','N','Email',140,'checkbox');
INSERT INTO xlite_config VALUES('smtp_username','Username','','Email',150,'text');
INSERT INTO xlite_config VALUES('smtp_password','Password','','Email',160,'text');
INSERT INTO xlite_config VALUES('smtp_security','Secure connection','no','Email',170,'select');
ALTER TABLE xlite_modules ADD COLUMN access_date int(11) NOT NULL DEFAULT 0;
ALTER TABLE xlite_order_items ADD COLUMN product_name varchar(255) NOT NULL default '';
ALTER TABLE xlite_order_items ADD COLUMN product_sku varchar(32) NOT NULL default '';
ALTER TABLE xlite_products ADD COLUMN sale_price decimal(12,2) NOT NULL default '0.00';

