Skip to content

Commit

Permalink
mysql: Add new column job_max_per_node to mxq_group table
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Sep 22, 2015
1 parent f8002ef commit 586f295
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mysql/alter_tables_0.15.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ALTER TABLE mxq_group
ADD COLUMN
job_max_per_node INT2 UNSIGNED NOT NULL DEFAULT 0
AFTER
job_time;
2 changes: 2 additions & 0 deletions mysql/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ CREATE TABLE IF NOT EXISTS mxq_group (
job_memory INT8 UNSIGNED NOT NULL DEFAULT 1024,
job_time INT4 UNSIGNED NOT NULL DEFAULT 15,

job_max_per_node INT2 UNSIGNED NOT NULL DEFAULT 0,

group_jobs INT8 UNSIGNED NOT NULL DEFAULT 0,
group_jobs_inq INT8 UNSIGNED NOT NULL DEFAULT 0,
group_jobs_running INT8 UNSIGNED NOT NULL DEFAULT 0,
Expand Down

0 comments on commit 586f295

Please sign in to comment.