Skip to content

Commit

Permalink
[psp] nektere sloupce jsou nove nullable/non-unique (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
kokes authored Jan 22, 2024
1 parent dc8d03f commit 184c3b1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions data/psp/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@
Column(
"zkratka",
Text,
nullable=False,
# prazdne napr. pro "Společné schůze Poslanecké sněmovny a Senátu"
nullable=True,
comment="Zkratka orgánu, bez diakritiky, v některých připadech "
"se zkratka při zobrazení nahrazuje jiným názvem",
),
Expand Down Expand Up @@ -1037,7 +1038,7 @@
"druh_vysledek",
Text,
nullable=False,
unique=True,
unique=False,
comment="Popis druhu výsledku",
),
),
Expand Down Expand Up @@ -1588,7 +1589,7 @@
Column(
"jd",
SmallInteger,
nullable=False,
nullable=True,
comment="Číslo jednacího dne v rámci schůze (používá se např. při "
"konstrukci URL na index stenozáznamu dle dnů).",
),
Expand Down

0 comments on commit 184c3b1

Please sign in to comment.