Skip to content

Commit e18ccb9

Browse files
committed
Merge branch 'release-0.2.13' into main
2 parents 9ec74c9 + bde5357 commit e18ccb9

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- develop
6+
- main
67
release:
78
types:
89
- published

db/flyway-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ module.exports = function () {
1818

1919
return {
2020
flywayArgs: {
21-
url: `jdbc:sqlserver://${origin};databaseName={${databaseName}}`,
21+
url: `jdbc:sqlserver://${origin};databaseName="${databaseName}"`,
2222
locations: `filesystem:${__dirname}/migration`,
2323
user: username,
2424
password: password,
2525
sqlMigrationSuffixes: ".sql",
2626
baselineOnMigrate: true,
2727
baselineVersion: "0002", // Do not change this baseline version number
28-
baselineDescription: "setup_db_baseline_data_as_of_07012020",
28+
baselineDescription: "setup_db_baseline_data_as_of_07012020"
2929
}
3030
};
3131
};

db/migration/V0008__delete_obsolete_strategies_478.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ OR code IN ('PTS_TRANSIT_ACCESS_2', 'STRATEGY_TRANSIT_ACCESS_2');
99

1010
-- Delete Accessibility, Mobility Hubs, and duplicate Telecommute from CalculationPanel
1111
DELETE FROM CalculationPanel
12-
WHERE calculationId = 1 and [id] IN (13, 21, 33);
12+
WHERE calculationId = 1 and [id] IN (13, 21);
1313

1414
-- Remove <<PTS_ACCESS>> and <<PTS_MOBILITY_HUBS>>
1515
UPDATE CalculationRule
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
SET IDENTITY_INSERT CalculationPanel ON;
22

3-
INSERT INTO dbo.CalculationPanel
4-
(id, calculationId
5-
,name
6-
,cssClass
7-
,displayOrder)
8-
VALUES
9-
(33, 1
10-
,'Warehouse Space'
11-
,'landUse'
12-
,350
13-
)
14-
GO
3+
-- INSERT INTO dbo.CalculationPanel
4+
-- (id, calculationId
5+
-- ,name
6+
-- ,cssClass
7+
-- ,displayOrder)
8+
-- VALUES
9+
-- (33, 1
10+
-- ,'Warehouse Space'
11+
-- ,'landUse'
12+
-- ,350
13+
-- )
14+
-- GO
1515

1616
SET IDENTITY_INSERT CalculationPanel OFF;

0 commit comments

Comments
 (0)