Added | Jooq 整合

This commit is contained in:
2022-11-14 15:57:20 +08:00
parent 376db324bd
commit 58515e20b2
6 changed files with 46 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE demo_migration (
value VARCHAR(25) NOT NULL,
PRIMARY KEY(value)
);
INSERT INTO demo_migration (value) VALUES ('AC demo');