We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec3b99 commit 4313365Copy full SHA for 4313365
app/src/main/resources/schema.sql
@@ -0,0 +1,9 @@
1
+CREATE TABLE user
2
+(
3
+ id BIGINT PRIMARY KEY NOT NULL AUTO_INCREMENT COMMENT 'PK',
4
+ username VARCHAR(40) NOT NULL COMMENT '사용자 이름',
5
+ password VARCHAR(255) NOT NULL COMMENT '패스워드',
6
+ created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '생성일',
7
+ last_modified_at TIMESTAMP NULL DEFAULT NULL COMMENT '최종 수정일',
8
+ deleted VARCHAR(10) NOT NULL COMMENT '삭제 유무'
9
+) engine 'InnoDB';
0 commit comments