Skip to content

Commit

Permalink
docs: ddl 정렬 수정 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Jan 4, 2024
1 parent d32dd64 commit 457eeee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doorip-api/src/main/resources/db/migration/V1__ddl.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
create table users
(
created_date timestamp(6),
last_modified_date timestamp(6),
last_modified_date timestamp(6),
user_id bigint auto_increment,
name varchar(255) not null,
intro varchar(255) not null,
Expand All @@ -15,7 +15,7 @@ create table users
create table trip
(
created_date timestamp(6),
last_modified_date timestamp(6),
last_modified_date timestamp(6),
trip_id bigint auto_increment,
title varchar(255) not null,
start_date date not null,
Expand All @@ -27,7 +27,7 @@ create table trip
create table participant
(
created_date timestamp(6),
last_modified_date timestamp(6),
last_modified_date timestamp(6),
participant_id bigint auto_increment,
user_id bigint unique,
trip_id bigint unique,
Expand All @@ -45,7 +45,7 @@ create table participant
create table todo
(
created_date timestamp(6),
last_modified_date timestamp(6),
last_modified_date timestamp(6),
todo_id bigint auto_increment,
trip_id bigint unique,
title varchar(255) not null,
Expand All @@ -60,7 +60,7 @@ create table todo
create table allocator
(
created_date timestamp(6),
last_modified_date timestamp(6),
last_modified_date timestamp(6),
allocator_id bigint auto_increment,
participant_id bigint unique,
todo_id bigint unique,
Expand Down

0 comments on commit 457eeee

Please sign in to comment.