Skip to content

Commit

Permalink
sql: Add column tags to mxq_group
Browse files Browse the repository at this point in the history
Add new column tags to mxq_group and change length of prerequisites
for consistency, where 1000 is an arbitary large number.
  • Loading branch information
donald committed Mar 29, 2021
1 parent 3b01ae1 commit b91cb5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mysql/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ CREATE TABLE IF NOT EXISTS mxq_group (
group_priority INT2 UNSIGNED NOT NULL DEFAULT 127,
group_blacklist VARCHAR(1000) NOT NULL DEFAULT '',
group_whitelist VARCHAR(1000) NOT NULL DEFAULT '',
prerequisites VARCHAR(40) NOT NULL DEFAULT '',
prerequisites VARCHAR(1000) NOT NULL DEFAULT '',
tags VARCHAR(1000) NOT NULL DEFAULT '',

user_uid INT4 UNSIGNED NOT NULL,
user_name VARCHAR(256) NOT NULL,
Expand Down

0 comments on commit b91cb5d

Please sign in to comment.