feat: implement sponge commands

This commit is contained in:
zhuyasen
2022-10-17 23:11:21 +08:00
parent 552d7b89e8
commit f67e29c6e1
108 changed files with 6693 additions and 1356 deletions

16
pkg/sql2code/test.sql Normal file
View File

@@ -0,0 +1,16 @@
create table user
(
id bigint unsigned auto_increment
primary key,
created_at datetime null,
updated_at datetime null,
deleted_at datetime null,
name char(50) not null comment '用户名',
password char(100) not null comment '密码',
email char(50) not null comment '邮件',
phone bigint unsigned not null comment '手机号码',
age tinyint not null comment '年龄',
gender tinyint not null comment '性别1:男2:女3:未知',
constraint user_email_uindex
unique (email)
);