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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Merge requests
!18
Dávky okolo feedbacku
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Dávky okolo feedbacku
mj/upload-feedback
into
master
Overview
2
Commits
9
Changes
3
Closed
Martin Mareš
requested to merge
mj/upload-feedback
into
master
4 years ago
Overview
2
Commits
9
Changes
3
Expand
Dávkové stahování a nahrávání feedbacku.
0
0
Merge request reports
Viewing commit
edfbc14a
Prev
Next
Show latest version
3 files
+
8
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
edfbc14a
DB: Job má sloupeček "result"
· edfbc14a
Martin Mareš
authored
4 years ago
db/db.ddl
+
4
−
2
Options
@@ -262,10 +262,12 @@ CREATE TABLE jobs (
created_at timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, -- kdy byl založen
finished_at timestamp with time zone DEFAULT NULL, -- kdy doběhl
expires_at timestamp with time zone DEFAULT NULL, -- kdy bude automaticky smazán
description text NOT NULL DEFAULT '',
description text NOT NULL DEFAULT '', -- popis jobu
result text NOT NULL DEFAULT '', -- jednořádková zpráva o výsledku
-- Vstupní parametry a výsledky jobu
in_json jsonb DEFAULT NULL,
out_json jsonb DEFAULT NULL,
-- Soubory jsou součástí úlohy a po její
m ukončení
budou smazány
-- Soubory jsou součástí úlohy a po její
expiraci
budou smazány
in_file varchar(255) DEFAULT NULL,
out_file varchar(255) DEFAULT NULL
);
Loading