Skip to content

Commit

Permalink
Merge pull request #243 from Backendless/stage
Browse files Browse the repository at this point in the history
Stage -> master
  • Loading branch information
ksv510 authored Sep 20, 2023
2 parents 04f5d49 + c016210 commit 3886006
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions scripts/mounts/mysql/init/1_ReCreateMainBackendless.sql
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ CREATE TABLE `main_backendless`.`Flow` (
`firstElementId` varchar(100) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`workspaceId` VARCHAR(100) NOT NULL,
`statusId` tinyint NOT NULL,
PRIMARY KEY (`id`),
KEY `fk_Flow_FirstElement` (`firstElementId`),
KEY `fk_Flow_AutomationWorkspace_Idx` (`workspaceId`),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
USE `main_backendless`;

INSERT INTO `Version` (`main`, `application`) values (73, 112);
INSERT INTO `Version` (`main`, `application`) values (76, 112);

INSERT INTO `DeveloperStatus` (`id`, `name`) VALUES ('1', 'ACTIVE');
INSERT INTO `DeveloperStatus` (`id`, `name`) VALUES ('2', 'SUSPENDED');
Expand All @@ -17,15 +17,12 @@ INSERT INTO `DeveloperOperation` VALUES ('14','CHANGE_LIMIT_NOTIFICATION');
INSERT INTO `DeveloperOperation` VALUES ('17','CHANGE_LOG_CONFIG');
INSERT INTO `DeveloperOperation` VALUES ('18','DELETE_LOGGERS');
INSERT INTO `DeveloperOperation` VALUES ('19','CHANGE_LOG_INTEGRATIONS');
INSERT INTO `DeveloperOperation` VALUES ('21','CHANGE_BILLING_PLAN');
INSERT INTO `DeveloperOperation` VALUES ('22','MARKETPLACE_PURCHASE');
INSERT INTO `DeveloperOperation` VALUES ('23','MARKETPLACE_DELETE_PURCHASE');
INSERT INTO `DeveloperOperation` VALUES ('24','EXPORT_APP');
INSERT INTO `DeveloperOperation` VALUES ('25','IMPORT');
INSERT INTO `DeveloperOperation` VALUES ('27','CLONE_APP');
INSERT INTO `DeveloperOperation` VALUES ('29','MODIFY_LANDING_PAGE');
INSERT INTO `DeveloperOperation` VALUES ('3','ASSIGN_TEAM_MEMBER_PERMISSION');
INSERT INTO `DeveloperOperation` VALUES ('30','PUBLISH_LANDING_PAGE');
INSERT INTO `DeveloperOperation` VALUES ('31','CHANGE_USER_REGISTRATION_PROPS');
INSERT INTO `DeveloperOperation` VALUES ('32','CHANGE_LOGIN_PROPS');
INSERT INTO `DeveloperOperation` VALUES ('33','EMAIL_TEMPLATE_ACCESS');
Expand Down Expand Up @@ -75,7 +72,6 @@ INSERT INTO `DeveloperWorkspaceOperation` VALUES ('2','ASSIGN_TEAM_MEMBER_PERMIS
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('3','DELETE_WORKSPACE');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('4','RENAME_WORKSPACE');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('5','CHANGE_LIMIT_NOTIFICATION');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('6','CHANGE_BILLING_PLAN');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('7','MARKETPLACE_PURCHASE');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('8','MARKETPLACE_DELETE_PURCHASE');
INSERT INTO `DeveloperWorkspaceOperation` VALUES ('9','CREATE_MODIFY_DELETE_FLOW');
Expand Down

0 comments on commit 3886006

Please sign in to comment.