Skip to content

mizunomu1v1/java-sample-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 

Repository files navigation

java-sample-app

カテゴリマスタ動作確認用SQL

create table main.category (
  category_id serial not null
  , name character varying(25) not null
  , last_update timestamp(6) without time zone default now() not null
  , primary key (category_id)
);

TODOリスト動作確認用SQL

 DROP TABLE main.todo;   
 CREATE TABLE main.todo (
  todo_id integer not null
  , task text not null
  , check_flag boolean 
  , last_update timestamp(6) without time zone not null
  , primary key (todo_id)
 )
 ;

 CREATE SEQUENCE main.todo_seq
  INCREMENT BY 1 
  MAXVALUE 99999999
  START WITH 1
  ;

About

SpringBoot + MyBatisを使ったサンプルアプリ

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published