Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

누락된 마이그레이션 파일 추가 #61

Merged
merged 4 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions program/migrations/0002_alter_proposal_options_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.1.5 on 2023-03-14 18:12

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("program", "0001_initial"),
]

operations = [
migrations.AlterModelOptions(
name="proposal",
options={"verbose_name": "프로그램", "verbose_name_plural": "프로그램들"},
),
migrations.AlterModelOptions(
name="proposalcategory",
options={"verbose_name": "프로그램 카테고리", "verbose_name_plural": "프로그램 카테고리들"},
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Generated by Django 4.1.5 on 2023-03-14 18:12

from django.db import migrations, models
import sponsor.models


class Migration(migrations.Migration):
dependencies = [
("sponsor", "0002_sponsor_bank_book_file_sponsor_manager_tel_and_more"),
]

operations = [
migrations.AlterField(
model_name="sponsor",
name="bank_book_file",
field=models.FileField(
blank=True,
help_text="후원사 통장 사본입니다.",
null=True,
upload_to=sponsor.models.bank_book_file_upload_to,
),
),
migrations.AlterField(
model_name="sponsor",
name="business_registration_number",
field=models.CharField(
blank=True,
help_text="후원사 사업자 등록 번호입니다. 세금 계산서 발급에 사용됩니다.",
max_length=100,
null=True,
),
),
migrations.AlterField(
model_name="sponsor",
name="url",
field=models.CharField(
blank=True,
help_text="파이콘 한국 홈페이지에 공개되는 후원사 홈페이지 주소입니다.",
max_length=255,
null=True,
),
),
migrations.AlterField(
model_name="sponsorlevel",
name="limit",
field=models.IntegerField(default=0, help_text="후원사 등급별 구좌 수"),
),
]