mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
13 lines
238 B
SQL
13 lines
238 B
SQL
CREATE TABLE IF NOT EXISTS `tb_account`
|
|
(
|
|
`id` VARCHAR(100),
|
|
`user_name` VARCHAR(100),
|
|
`age` Integer,
|
|
`sex` Integer,
|
|
`birthday` DATETIME,
|
|
`options` VARCHAR(1024),
|
|
`is_delete` Integer
|
|
);
|
|
|
|
|