Init apps histories
and profiles
This commit is contained in:
parent
397784a673
commit
a3e6308837
10 changed files with 22 additions and 0 deletions
0
histories/__init__.py
Normal file
0
histories/__init__.py
Normal file
3
histories/admin.py
Normal file
3
histories/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
histories/apps.py
Normal file
5
histories/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class HistoriesConfig(AppConfig):
|
||||
name = 'histories'
|
0
histories/migrations/__init__.py
Normal file
0
histories/migrations/__init__.py
Normal file
3
histories/models.py
Normal file
3
histories/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
0
profiles/__init__.py
Normal file
0
profiles/__init__.py
Normal file
3
profiles/admin.py
Normal file
3
profiles/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
profiles/apps.py
Normal file
5
profiles/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ProfilesConfig(AppConfig):
|
||||
name = 'profiles'
|
0
profiles/migrations/__init__.py
Normal file
0
profiles/migrations/__init__.py
Normal file
3
profiles/models.py
Normal file
3
profiles/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
Loading…
Reference in a new issue