建表语句不同,ENGINE=MyISAM
CREATE TABLE `girl` ( `id` int(11) NOT NULL, `age` int(11) NOT NULL, `cup_size` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
jpa: hibernate: ddl-auto: create show-sql: true
DDL和老师的不一样,请问什么原因?