diff options
Diffstat (limited to 'java/MyMyBatis/src/create.sql')
-rw-r--r-- | java/MyMyBatis/src/create.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/java/MyMyBatis/src/create.sql b/java/MyMyBatis/src/create.sql new file mode 100644 index 0000000..337d230 --- /dev/null +++ b/java/MyMyBatis/src/create.sql @@ -0,0 +1,10 @@ +CREATE TABLE models +( + id serial NOT NULL, + name text, + CONSTRAINT pk_id PRIMARY KEY (id) +); + +INSERT INTO models(name) VALUES ('asynk'); +INSERT INTO models(name) VALUES ('fake'); +SET AUTOCOMMIT FALSE; |