Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odevzdávací Systém MO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Merge requests
!106
Účastníkům při výběru školy nezobrazujeme skrytá místa
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Účastníkům při výběru školy nezobrazujeme skrytá místa
jk/hidden-place
into
devel
Overview
9
Commits
6
Changes
8
All threads resolved!
Hide all comments
Merged
Jiří Kalvoda
requested to merge
jk/hidden-place
into
devel
3 years ago
Overview
9
Commits
6
Changes
8
All threads resolved!
Hide all comments
Closes
#253 (closed)
0
0
Merge request reports
Compare
devel
version 3
d9e4c83f
3 years ago
version 2
bd7a594e
3 years ago
version 1
22e89129
3 years ago
devel (base)
and
latest version
latest version
1cb9f9b9
6 commits,
3 years ago
version 3
d9e4c83f
5 commits,
3 years ago
version 2
bd7a594e
5 commits,
3 years ago
version 1
22e89129
3 commits,
3 years ago
8 files
+
19
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
db/db.ddl
+
2
−
1
View file @ 1cb9f9b9
Edit in single-file editor
Open in Web IDE
Show full file
@@ -52,7 +52,8 @@ CREATE TABLE places (
code varchar(255) UNIQUE COLLATE "cs_CZ", -- zkratka pro zadávání
type place_type NOT NULL,
nuts varchar(255) UNIQUE DEFAULT NULL, -- evropský NUTS/LAU kód regionu
note text NOT NULL DEFAULT '' -- uživatelská poznámka
note text NOT NULL DEFAULT '', -- uživatelská poznámka
hidden boolean NOT NULL DEFAULT false -- schovat pro účastníky
);
CREATE INDEX places_parent_index ON places (parent);
Loading