Skip to content

Commit

Permalink
mysql: Restore column group_flags
Browse files Browse the repository at this point in the history
Commit d25a77e ("mxq_job: Remove unused job_flags column") accidentally
removed group_flags together with job_flags from the create_tables.sql
file. Undo.
  • Loading branch information
donald committed Feb 17, 2024
1 parent 4275b42 commit 13af1cc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mysql/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CREATE TABLE IF NOT EXISTS mxq_group (
group_id INT8 UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
group_name VARCHAR(128) NOT NULL DEFAULT 'default',
group_status INT1 UNSIGNED NOT NULL DEFAULT 0,
group_flags INT8 UNSIGNED NOT NULL DEFAULT 0,
group_priority INT2 UNSIGNED NOT NULL DEFAULT 127,
group_blacklist VARCHAR(1000) NOT NULL DEFAULT '',
group_whitelist VARCHAR(1000) NOT NULL DEFAULT '',
Expand Down

0 comments on commit 13af1cc

Please sign in to comment.