Files
asset_helper/prompt/v3.md

46 lines
670 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
设计用户第注册功能,数据库要求:
```
一、表名user_main
字段:
1、id uuidv7 default 主键。
2、deleted bool defalut false。
3、create_time ....
4、update_time ....
二、表名user_login_account
1、id uuidv7 default 主键。
2、user_id uuidv7 对应 user_main 表的 id。
3、account varchat not null。
4、deleted bool defalut false。
5、create_time ....
6、update_time ....
三、表名user_login_password
1、id uuidv7 default 主键。
2、user_id uuidv7 对应 user_main 表的 id。
3、password varchat not null。
4、deleted bool defalut false。
5、create_time ....
6、update_time ....
```