Skip to content

Commit e61abe3

Browse files
authored
Add files via upload
1 parent d1ae78d commit e61abe3

13 files changed

Lines changed: 18 additions & 0 deletions

File tree

accounts/__init__.py

Whitespace-only changes.
146 Bytes
Binary file not shown.
187 Bytes
Binary file not shown.
429 Bytes
Binary file not shown.
184 Bytes
Binary file not shown.

accounts/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

accounts/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class AccountsConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'accounts'

accounts/migrations/__init__.py

Whitespace-only changes.
157 Bytes
Binary file not shown.

accounts/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

0 commit comments

Comments
 (0)