You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simpleCA/fix_token_length.sql

21 lines
343 B

-- 修复user_tokens表token字段长度的SQL脚本
-- 执行方式: mysql -u root -p Simple_CA < fix_token_length.sql
USE Simple_CA;
-- 修改token字段长度从64增加到512
ALTER TABLE `user_tokens`
MODIFY COLUMN `token` VARCHAR(512) NOT NULL COMMENT 'JWT Token';
-- 验证修改
DESCRIBE `user_tokens`;