Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
database-gdetiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Global Dynamic Exposure
Libraries
database-gdetiles
Merge requests
!8
Added script to create data_units table
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Added script to create data_units table
feature/data_units_table
into
master
Overview
2
Commits
1
Pipelines
2
Changes
2
Merged
Cecilia Nievas
requested to merge
feature/data_units_table
into
master
3 years ago
Overview
2
Commits
1
Pipelines
2
Changes
2
\approve
@fd
0
0
Merge request reports
Compare
master
version 1
0d849eae
3 years ago
master (base)
and
latest version
latest version
c158a935
1 commit,
3 years ago
version 1
0d849eae
2 commits,
3 years ago
2 files
+
38
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
migrations/00004_create-table-data-units.sql
0 → 100644
+
17
−
0
View file @ c158a935
Edit in single-file editor
Open in Web IDE
CREATE
TABLE
public
.
data_units
(
data_unit_id
VARCHAR
,
occupancy_case
occupancycase
,
aggregated_source_id
SMALLINT
,
exposure_entity
CHAR
(
3
),
buildings_total
FLOAT
,
dwellings_total
FLOAT
,
people_census
FLOAT
,
cost_total
FLOAT
,
PRIMARY
KEY
(
data_unit_id
,
occupancy_case
,
aggregated_source_id
)
);
ALTER
TABLE
public
.
data_units
OWNER
TO
postgres
;
Loading