Skip to content

Commit dfc0c41

Browse files
committed
Merge branch 'dev' into feature/milestone-pausing
# Conflicts: # config/default.json # postman.json
2 parents 9dba906 + b51a357 commit dfc0c41

File tree

20 files changed

+1485
-96
lines changed

20 files changed

+1485
-96
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: 1 addition & 2 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": "",
@@ -60,5 +58,6 @@
6058
"connectUrl":"https://connect.topcoder-dev.com",
6159
"accountsAppUrl": "https://accounts.topcoder-dev.com",
6260
"MAX_REVISION_NUMBER": 100,
61+
"UNIQUE_GMAIL_VALIDATION": true,
6362
"VALID_STATUSES_BEFORE_PAUSED": "[\"active\"]"
6463
}
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)