Uudempien versioiden historiatiedot löytyvät gitistä.
ALTER TABLE categories ADD autoPurchaseMail VARCHAR(100) NULL
CREATE TABLE ci_sessions ( session_id varchar(100) DEFAULT '0' NOT NULL, ip_address varchar(100) DEFAULT '0' NOT NULL, user_agent varchar(300) NOT NULL, last_activity int DEFAULT 0 NOT NULL, user_data varchar(max) NOT NULL, CONSTRAINT PK_CI_Session PRIMARY KEY (session_id ASC) ); CREATE NONCLUSTERED INDEX NCI_Session_Activity ON CI_Sessions(last_activity DESC)
ALTER TABLE users ADD productUser INT NOT NULL DEFAULT(0)
ALTER TABLE orders ALTER COLUMN comment VARCHAR(5000)
ALTER TABLE orderproducts ADD csvCreation INT NOT NULL DEFAULT(0) ALTER TABLE categories ADD csvCreation INT NOT NULL DEFAULT(0)
esim. STUK0123; http://url/tilausj/orders/vieworder/123;"Muistitikku 4GB";59;ke;Tarvikkeet
DELETE FROM orderproducts WHERE id IN ( SELECT p2.id FROM orderproducts p2 LEFT OUTER JOIN orderproducts_relatedorderproducts ON p2.id=orderproducts_relatedorderproducts.relatedorderproduct_id WHERE orderproducts_relatedorderproducts.relatedorderproduct_id IS NULL AND order_id IS NULL )
delete from orderextrafields where orderproduct_id is null delete from optiongroups where group_id is NULL; delete from extrafields where group_id is NULL;
ALTER TABLE orders ADD typeOfCost VARCHAR(50) NULL ALTER TABLE categories ADD typeOfCost VARCHAR(50) NULL
+ näiden yhdistelmät