Skip to content
Open
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
Binary file not shown.
Binary file added myweb/myproject/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added myweb/myproject/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file added myweb/myproject/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file added myweb/myproject/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file added myweb/myproject/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file added myweb/myproject/__pycache__/views.cpython-39.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions myweb/myproject/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
admin.site.register(Order)
admin.site.register(OrderUpdate)
admin.site.register(Register)

23 changes: 23 additions & 0 deletions myweb/myproject/migrations/0011_auto_20210826_1626.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.0.6 on 2021-08-26 10:56

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('myproject', '0010_rename_uname_register_username'),
]

operations = [
migrations.AlterField(
model_name='product',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='register',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
14 changes: 14 additions & 0 deletions myweb/myproject/migrations/0014_merge_20210828_2216.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 3.0.6 on 2021-08-28 16:46

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('myproject', '0011_auto_20210826_1626'),
('myproject', '0013_product_sequence_id'),
]

operations = [
]
23 changes: 23 additions & 0 deletions myweb/myproject/migrations/0015_auto_20210830_0041.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.6 on 2021-08-29 19:11

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('myproject', '0014_merge_20210828_2216'),
]

operations = [
migrations.AlterField(
model_name='product',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='register',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading