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
!1
Added base table
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Added base table
feature/base-table
into
master
Overview
2
Commits
1
Pipelines
0
Changes
2
Merged
Added base table
Felix Delattre
requested to merge
feature/base-table
into
master
Mar 17, 2021
Overview
2
Commits
1
Pipelines
0
Changes
2
Initiated the GDE database with a very basic structure.
\apporve
@cnievas
@ds
Edited
Apr 6, 2021
by
Felix Delattre
0
0
Merge request reports
Compare
master
version 4
74be9e54
Apr 7, 2021
version 3
f0bb0ade
Apr 7, 2021
version 2
bf7a1982
Apr 6, 2021
version 1
105aa44d
Mar 17, 2021
master (base)
and
version 1
latest version
bede0c90
1 commit,
Apr 7, 2021
version 4
74be9e54
3 commits,
Apr 7, 2021
version 3
f0bb0ade
2 commits,
Apr 7, 2021
version 2
bf7a1982
1 commit,
Apr 6, 2021
version 1
105aa44d
1 commit,
Mar 17, 2021
2 files
+
32
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
migrations/00001_create-initial-table.sql
0 → 100644
+
8
−
0
View file @ 105aa44d
Edit in single-file editor
Open in Web IDE
CREATE
TABLE
public
.
gde_tiles
(
quadkey
text
NOT
NULL
,
CONSTRAINT
quadkey
PRIMARY
KEY
(
quadkey
)
);
ALTER
TABLE
public
.
gde_tiles
OWNER
to
postgres
;
Loading