-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 검색 기능 * feat: 내 맛집 리스트 기능 구현 * chore: users 앱 삭제 * chore: Revert "chore: users 앱 삭제" This reverts commit 37af76b. * chore: users 삭제를 위한 경로 변경 및 수정 * chore: users 앱 삭제 * chore: 친구 상태 타입 수정 * chore: users 앱 삭제 * feat: 로그인 반영 검색 --------- Co-authored-by: Shim Kyumin <[email protected]>
- Loading branch information
1 parent
8c879c8
commit c8af365
Showing
5 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
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,24 @@ | ||
# Generated by Django 4.2.14 on 2024-07-31 05:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("friends", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="friend", | ||
name="state", | ||
field=models.CharField( | ||
choices=[ | ||
("request", "Request"), | ||
("approve", "Approve"), | ||
("deny", "Deny"), | ||
], | ||
max_length=20, | ||
), | ||
), | ||
] |
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,25 @@ | ||
# Generated by Django 4.2.14 on 2024-07-31 05:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("friends", "0002_alter_friend_state"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="friend", | ||
name="state", | ||
field=models.CharField( | ||
choices=[ | ||
("request", "Request"), | ||
("approve", "Approve"), | ||
("deny", "Deny"), | ||
], | ||
default="request", | ||
max_length=20, | ||
), | ||
), | ||
] |
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
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
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