Skip to content

Commit

Permalink
fix(sql): fix sql statement in index creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Lea9250 committed Sep 19, 2024
1 parent 65e0584 commit cec2e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/update/7079.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ ALTER TABLE devices DROP INDEX TVALUE;

-- Update column to TEXT and recreate the index
ALTER TABLE devices MODIFY COLUMN TVALUE TEXT;
ADD INDEX TVALUE (TVALUE(255));
ALTER TABLE devices ADD INDEX TVALUE (TVALUE(255));

0 comments on commit cec2e55

Please sign in to comment.