diff --git a/histories/__init__.py b/histories/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/histories/admin.py b/histories/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/histories/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/histories/apps.py b/histories/apps.py new file mode 100644 index 0000000..6367caf --- /dev/null +++ b/histories/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class HistoriesConfig(AppConfig): + name = 'histories' diff --git a/histories/migrations/__init__.py b/histories/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/histories/models.py b/histories/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/histories/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/profiles/__init__.py b/profiles/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/profiles/admin.py b/profiles/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/profiles/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/profiles/apps.py b/profiles/apps.py new file mode 100644 index 0000000..5501fda --- /dev/null +++ b/profiles/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ProfilesConfig(AppConfig): + name = 'profiles' diff --git a/profiles/migrations/__init__.py b/profiles/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/profiles/models.py b/profiles/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/profiles/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here.