File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
scripts/development-database Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11
11
12
12
- Improve Currentness indicator ([ #274 ] )
13
13
- Add new report ` MultilevelCurrentness ` ([ #403 ] )
14
+ - Add MapAction priority countries to database ([ #427 ] )
14
15
15
16
[ #274 ] : https://github.com/GIScience/ohsome-quality-analyst/pull/274
16
17
[ #403 ] : https://github.com/GIScience/ohsome-quality-analyst/pull/403
17
18
[ #416 ] : https://github.com/GIScience/ohsome-quality-analyst/pull/416
19
+ [ #427 ] : https://github.com/GIScience/ohsome-quality-analyst/pull/427
18
20
19
21
20
22
## 0.11.0
Original file line number Diff line number Diff line change 2
2
-- PostgreSQL database dump
3
3
--
4
4
5
- -- Dumped from database version 10.19 (Ubuntu 10.19 -0ubuntu0.18.04.1)
6
- -- Dumped by pg_dump version 13.4
5
+ -- Dumped from database version 10.22 (Ubuntu 10.22 -0ubuntu0.18.04.1)
6
+ -- Dumped by pg_dump version 14.3
7
7
8
8
SET statement_timeout = 0;
9
9
SET lock_timeout = 0;
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ CREATE TABLE development.admin_world_water (
27
27
LIKE public .admin_world_water INCLUDING INDEXES
28
28
);
29
29
30
+ CREATE TABLE development .mapaction_cesdrr_countries (
31
+ LIKE public .mapaction_cesdrr_countries INCLUDING INDEXES
32
+ );
33
+
30
34
INSERT INTO development .regions
31
35
SELECT
32
36
*
@@ -55,6 +59,12 @@ SELECT
55
59
FROM
56
60
public .admin_world_water ;
57
61
62
+ INSERT INTO development .mapaction_cesdrr_countries
63
+ SELECT
64
+ *
65
+ FROM
66
+ public .mapaction_cesdrr_countries ;
67
+
58
68
59
69
/* Testing */
60
70
/* Currently two regions are used for testing: */
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ DROP TABLE IF EXISTS test.hexcells;
20
20
21
21
DROP TABLE IF EXISTS development .admin_world_water ;
22
22
23
+ DROP TABLE IF EXISTS development .mapaction_cesdrr_countires ;
24
+
25
+ DROP TABLE IF EXISTS test .mapaction_cesdrr_countires ;
26
+
23
27
DROP SCHEMA IF EXISTS development;
24
28
25
29
DROP SCHEMA IF EXISTS test;
You can’t perform that action at this time.
0 commit comments