Commit e348c0d4 by mercymodest

feat:- add yoga sql

parent 3bd5c913
# CREATE TABLE `api_client_credentials` # CREATE TABLE `api_client_credentials`
...@@ -267,6 +267,20 @@ create index user_management_records_year_index ...@@ -267,6 +267,20 @@ create index user_management_records_year_index
on user_management_records (year); on user_management_records (year);
alter table user_management_records
modify reservation_count int default 0 null comment '预约次数';
alter table user_management_records
modify checkin_count int default 0 null comment '签到次数';
alter table user_management_records
modify weight decimal(5, 2) null comment '体重(kg)';
alter table user
modify member_level tinyint(1) null comment '会员等级 0:A级 1:B级 2:C级';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment