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
!17
Výsledkovka pomocí mo.web.table
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Výsledkovka pomocí mo.web.table
jirka/table
into
master
Overview
0
Commits
23
Changes
26
Closed
Jiří Setnička
requested to merge
jirka/table
into
master
4 years ago
Overview
0
Commits
23
Changes
26
0
0
Merge request reports
Compare
master
version 1
b80ddf49
4 years ago
master (base)
and
latest version
latest version
5523d0f4
23 commits,
4 years ago
version 1
b80ddf49
4 commits,
4 years ago
26 files
+
679
−
299
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
db/db.ddl
+
4
−
2
View file @ 5523d0f4
Show full file
@@ -262,10 +262,12 @@ CREATE TABLE jobs (
@@ -262,10 +262,12 @@ CREATE TABLE jobs (
created_at timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, -- kdy byl založen
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
finished_at timestamp with time zone DEFAULT NULL, -- kdy doběhl
expires_at timestamp with time zone DEFAULT NULL, -- kdy bude automaticky smazán
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,
in_json jsonb DEFAULT NULL,
out_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,
in_file varchar(255) DEFAULT NULL,
out_file varchar(255) DEFAULT NULL
out_file varchar(255) DEFAULT NULL
);
);
Loading