Skip to content

Commit

Permalink
Merge pull request #251 from read-a-perfume/task/RDPF-193
Browse files Browse the repository at this point in the history
[RDPF-193] 향수-즐겨찾기 script 추가
  • Loading branch information
big-cir authored Nov 27, 2023
2 parents 8ec5b17 + bc2a507 commit 4102752
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .jpb/jpb-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PersistenceUnitSettings">
<persistence-units>
<persistence-unit moduleName="perfume-backend.perfume-api.main" name="Default">
<packages>
<package value="io.perfume.api" />
</packages>
</persistence-unit>
</persistence-units>
</component>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
create table perfume_favorite
(
user_id bigint not null,
perfume_id bigint notnull,
created_at datetime not null,
updated_at datetime not null,
deleted_at datetime null,
constraint pk_perfume_favorite primary key (user_id, perfume_id)
);

0 comments on commit 4102752

Please sign in to comment.