Skip to content

Commit

Permalink
upgrade/5.8.x-to-6.0.0.md: sql statements to change size for htable c…
Browse files Browse the repository at this point in the history
…olumns
  • Loading branch information
miconda committed Jan 28, 2025
1 parent 5c89938 commit dc9b21a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/install/upgrade/5.8.x-to-6.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,6 @@ Run following SQL statements in MySQL client to upgrade database
structure from v5.8 to v6.0:

``` sql
...
ALTER TABLE htable CHANGE COLUMN `key_name` `key_name` VARCHAR(256) DEFAULT '' NOT NULL; -- # was VARCHAR(64) DEFAULT '' NOT NULL
ALTER TABLE htable CHANGE COLUMN `key_value` `key_value` VARCHAR(512) DEFAULT '' NOT NULL; -- # was VARCHAR(128) DEFAULT '' NOT NULL
```

0 comments on commit dc9b21a

Please sign in to comment.