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
MO-P
Odevzdávací Systém MO
Merge requests
!18
Project 'mj/mo-submit' was moved to 'mo-p/osmo'. Please update any links and bookmarks that may still have the old path.
Dávky okolo feedbacku
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Dávky okolo feedbacku
mj/upload-feedback
into
master
Overview
2
Commits
9
Changes
3
Closed
Dávky okolo feedbacku
Martin Mareš
requested to merge
mj/upload-feedback
into
master
Jan 16, 2021
Overview
2
Commits
9
Changes
3
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
edfbc14a
DB: Job má sloupeček "result"
· edfbc14a
Martin Mareš
authored
Jan 16, 2021
db/db.ddl
+
4
−
2
View file @ 9405aa0b
Show full file
@@ -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