Skip to content

Commit

Permalink
sql: Add migration for mxq_group.tags
Browse files Browse the repository at this point in the history
Add new column tags to mxq_groups.

Additionally, fix length of prerequisites from 1024 to 1000.
  • Loading branch information
donald committed Mar 29, 2021
1 parent b91cb5d commit b2decaf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mysql/migrate_010_add_mxq_group_tags.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ALTER TABLE mxq_group MODIFY COLUMN prerequisites VARCHAR(1000) NOT NULL DEFAULT '';
ALTER TABLE mxq_group
ADD COLUMN
tags VARCHAR(1000) NOT NULL DEFAULT ''
AFTER
prerequisites;

0 comments on commit b2decaf

Please sign in to comment.