Index: branches/1.1.x/install/install_schema.sql =================================================================== diff -u -N -r14249 -r14396 --- branches/1.1.x/install/install_schema.sql (.../install_schema.sql) (revision 14249) +++ branches/1.1.x/install/install_schema.sql (.../install_schema.sql) (revision 14396) @@ -1,5 +1,3 @@ -# place here only sql queries, that were executed on live AND dev sites !!! - CREATE TABLE Widgets ( WidgetId int(11) NOT NULL AUTO_INCREMENT, Title varchar(255) NOT NULL DEFAULT '', @@ -17,11 +15,3 @@ PRIMARY KEY (WidgetId) ); -# ===== SQLs above this line already on LIVE ================================================================================================ - -# place here only sql queries, that were executed on dev site !!! - - -# ===== SQLs above this line already on DEV ======================================================================================================== - -# place here only sql queries, that were executed on prod server !!! Index: branches/1.1.x/install/project_upgrades.sql =================================================================== diff -u -N --- branches/1.1.x/install/project_upgrades.sql (revision 0) +++ branches/1.1.x/install/project_upgrades.sql (revision 14396) @@ -0,0 +1,2 @@ +# r1: Initial Project Task (#TASK_ID) + Index: branches/1.1.x/install/install_data.sql =================================================================== diff -u -N -r14249 -r14396 --- branches/1.1.x/install/install_data.sql (.../install_data.sql) (revision 14249) +++ branches/1.1.x/install/install_data.sql (.../install_data.sql) (revision 14396) @@ -1,19 +1,7 @@ -# place here only sql queries, that were executed on live AND dev sites !!! - INSERT INTO Permissions VALUES(DEFAULT, 'custom.view', 11, 1, 1, 0); INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.delete', 11, 1, 1, 0); INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.edit', 11, 1, 1, 0); INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.add', 11, 1, 1, 0); INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.view', 11, 1, 1, 0); -INSERT INTO Modules VALUES ('Custom', 'modules/custom/', 'custom-sections', DEFAULT, 1, 10, 'custom/', 0, NULL); - - -# ===== SQLs above this line already on LIVE ================================================================================================ - -# place here only sql queries, that were executed on dev site !!! - - -# ===== SQLs above this line already on DEV ======================================================================================================== - -# place here only sql queries, that were executed on prod server !!! +INSERT INTO Modules VALUES ('Custom', 'modules/custom/', 'custom-sections', DEFAULT, 1, 10, 'custom/', 0, NULL, NULL);