-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1627 from woowacourse/flyway-script
fix: department flyway script
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
backend/src/main/resources/db/migration/prod/V10__fix_table_group_and_member.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
drop table department; | ||
drop table department_member; | ||
|
||
CREATE TABLE IF NOT EXISTS department | ||
( | ||
id bigint auto_increment primary key, | ||
part varchar(50) not null, | ||
term varchar(50) not null | ||
) ENGINE = InnoDB | ||
DEFAULT CHARSET = utf8mb4; | ||
|
||
create table if not exists department_member | ||
( | ||
id bigint auto_increment primary key, | ||
member_id bigint not null, | ||
department_id bigint not null, | ||
constraint FK_DEPARTMENT_MEMBER_ON_MEMBER | ||
foreign key (member_id) references prolog.member (id), | ||
constraint FK_DEPARTMENT_MEMBER_ON_DEPARTMENT | ||
foreign key (department_id) references prolog.department (id) | ||
) ENGINE = InnoDB | ||
DEFAULT CHARSET = utf8mb4; | ||
|
||
insert into department(id, part, term) values (1, 'BACKEND', 'THIRD'); | ||
insert into department(id, part, term) values (2, 'FRONTEND', 'THIRD'); | ||
insert into department(id, part, term) values (3, 'BACKEND', 'FOURTH'); | ||
insert into department(id, part, term) values (4, 'FRONTEND', 'FOURTH'); | ||
insert into department(id, part, term) values (5, 'BACKEND', 'FIFTH'); | ||
insert into department(id, part, term) values (6, 'FRONTEND', 'FIFTH'); | ||
insert into department(id, part, term) values (7, 'ANDROID', 'FIFTH'); | ||
|
||
insert into department_member (id, member_id, department_id) | ||
(select id, member_id, group_id from group_member); |