We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 960d80d commit 278166cCopy full SHA for 278166c
pyconweb2022/sponsor/migrations/0006_personalsponsorship.py
@@ -0,0 +1,32 @@
1
+# Generated by Django 4.0.2 on 2022-09-18 21:22
2
+
3
+from django.db import migrations, models
4
5
6
+class Migration(migrations.Migration):
7
8
+ dependencies = [
9
+ ("sponsor", "0005_sponsor_eng_desc"),
10
+ ]
11
12
+ operations = [
13
+ migrations.CreateModel(
14
+ name="PersonalSponsorship",
15
+ fields=[
16
+ (
17
+ "id",
18
+ models.BigAutoField(
19
+ auto_created=True,
20
+ primary_key=True,
21
+ serialize=False,
22
+ verbose_name="ID",
23
+ ),
24
25
+ ("name", models.CharField(max_length=50)),
26
+ ("amount", models.IntegerField()),
27
+ ],
28
+ options={
29
+ "ordering": ["amount"],
30
+ },
31
32
0 commit comments