to-mapper.auto-mapper-example.0.0.48.source-code.init.sql Maven / Gradle / Ivy
drop table if exists example;
create table example (
id bigint unsigned not null auto_increment,
name varchar(32) default '默认名称',
sort int,
primary key(id)
) charset=utf8mb4;
drop table if exists new_example;
create table new_example (
id bigint unsigned not null auto_increment,
info text,
primary key(id)
) charset=utf8mb4;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy