Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Dynamic Exposure
OpenBuildingMap
database-obmbuildings
Commits
7007fe22
Commit
7007fe22
authored
Aug 01, 2022
by
Laurens Oostwegel
Committed by
Laurens Oostwegel
Aug 03, 2022
Browse files
Add last update column
parent
3900db01
Pipeline
#48445
passed with stage
in 1 minute and 13 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
7007fe22
...
...
@@ -27,6 +27,7 @@ Please add a small reasoning around the following points for each proposed merge
| relation_id | integer |
| quadkey | char(18) |
| occupancy | text |
| last_update | timestamp |
#### `migrations` - Information about database migrations
...
...
migrations/00010_add_column_last_update.sql
0 → 100644
View file @
7007fe22
ALTER
TABLE
public
.
obm_buildings
ADD
COLUMN
IF
NOT
EXISTS
last_update
TIMESTAMP
;
CREATE
INDEX
idx_last_update
ON
public
.
obm_buildings
(
last_update
);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment