All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lex.mybatis-flex-spring-boot-test.1.10.2.source-code.schema.sql Maven / Gradle / Ivy

There is a newer version: 1.10.3
Show newest version
CREATE TABLE IF NOT EXISTS `tb_account`
(
    `id`        INTEGER PRIMARY KEY auto_increment,
    `user_name` VARCHAR(100),
    `age`       Integer,
    `sex`       Integer,
    `birthday`  DATETIME,
    `options`   VARCHAR(1024),
    `is_delete` Integer
);


CREATE TABLE IF NOT EXISTS `tb_article`
(
    `id`         INTEGER PRIMARY KEY auto_increment,
    `account_id` Integer,
    `title`      VARCHAR(100),
    `content`    text,
    `is_delete` Integer
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy