Skip to content

Commit cb1f7d7

Browse files
authored
Merge pull request #308 from topcoder-platform/dev
Supporting Release For Connect 2.4.12
2 parents ab2f48f + 271f710 commit cb1f7d7

37 files changed

+2778
-425
lines changed

config/custom-environment-variables.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
"fileServiceEndpoint": "FILE_SERVICE_ENDPOINT",
2323
"identityServiceEndpoint": "IDENTITY_SERVICE_ENDPOINT",
2424
"memberServiceEndpoint": "MEMBER_SERVICE_ENDPOINT",
25-
"systemUserClientId": "SYSTEM_USER_CLIENT_ID",
26-
"systemUserClientSecret": "SYSTEM_USER_CLIENT_SECRET",
2725
"connectProjectsUrl": "CONNECT_PROJECTS_URL",
2826
"dbConfig": {
2927
"masterUrl": "DB_MASTER_URL",

config/default.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
"timelineIndexName": "timelines",
2626
"timelineDocType": "timelineV4"
2727
},
28-
"systemUserClientId": "",
29-
"systemUserClientSecret": "",
3028
"connectProjectUrl":"",
3129
"dbConfig": {
3230
"masterUrl": "",
@@ -59,5 +57,6 @@
5957
"inviteEmailSectionTitle": "Project Invitation",
6058
"connectUrl":"https://connect.topcoder-dev.com",
6159
"accountsAppUrl": "https://accounts.topcoder-dev.com",
62-
"MAX_REVISION_NUMBER": 100
60+
"MAX_REVISION_NUMBER": 100,
61+
"UNIQUE_GMAIL_VALIDATION": false
6362
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
--
2+
-- product_templates
3+
--
4+
ALTER TABLE product_templates ALTER COLUMN "template" DROP NOT NULL;
5+
6+
ALTER TABLE product_templates ADD COLUMN "form" json;
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
--
2+
-- CREATE NEW TABLE:
3+
-- project_estimations
4+
--
5+
6+
CREATE TABLE project_estimations
7+
(
8+
id bigint NOT NULL,
9+
"buildingBlockKey" character varying(255) NOT NULL,
10+
conditions character varying(512) NOT NULL,
11+
price double precision NOT NULL,
12+
"minTime" integer NOT NULL,
13+
"maxTime" integer NOT NULL,
14+
metadata json NOT NULL DEFAULT '{}'::json,
15+
"projectId" bigint NOT NULL,
16+
"deletedAt" timestamp with time zone,
17+
"createdAt" timestamp with time zone,
18+
"updatedAt" timestamp with time zone,
19+
"deletedBy" bigint,
20+
"createdBy" integer NOT NULL,
21+
"updatedBy" integer NOT NULL,
22+
CONSTRAINT project_estimations_pkey PRIMARY KEY (id)
23+
);
24+
25+
CREATE SEQUENCE project_estimations_id_seq
26+
START WITH 1
27+
INCREMENT BY 1
28+
NO MINVALUE
29+
NO MAXVALUE
30+
CACHE 1;
31+
32+
ALTER SEQUENCE project_estimations_id_seq OWNED BY project_estimations.id;
33+
34+
ALTER TABLE project_estimations
35+
ALTER COLUMN id SET DEFAULT nextval('project_estimations_id_seq');

0 commit comments

Comments
 (0)