Files
java-tutorials/persistence-modules/spring-jpa/src/main/resources/autogenkey-schema.sql
T
2019-11-01 00:35:30 +01:00

5 lines
140 B
SQL

CREATE TABLE IF NOT EXISTS sys_message (
id bigint(20) NOT NULL AUTO_INCREMENT,
message varchar(100) NOT NULL,
PRIMARY KEY (id)
);