Skip to content

Commit

Permalink
fix: 修复捉虫计划鸣谢名单表 user_slug 字段的错误类型
Browse files Browse the repository at this point in the history
  • Loading branch information
FHU-yezi committed Nov 3, 2024
1 parent 7b019ca commit c87f181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/models/debug_project_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def _create_table(cls) -> None:
module TEXT NOT NULL,
description TEXT NOT NULL,
user_name TEXT NOT NULL,
user_slug CHAR(12) NOT NULL,
user_slug VARCHAR(12) NOT NULL,
reward SMALLINT NOT NULL
);
"""
Expand Down

0 comments on commit c87f181

Please sign in to comment.