From 3ac084aef3bf16ca3c8c6ca436f1650bfd09cf77 Mon Sep 17 00:00:00 2001 From: "Hassan D. M. Sambo" Date: Fri, 3 Nov 2023 10:22:04 -0400 Subject: [PATCH] #2723 Added Census historical migration module --- backend/census_historical_migration/__init__.py | 0 backend/census_historical_migration/admin.py | 3 +++ backend/census_historical_migration/apps.py | 6 ++++++ backend/census_historical_migration/migrations/__init__.py | 0 backend/census_historical_migration/models.py | 3 +++ backend/census_historical_migration/tests.py | 3 +++ backend/census_historical_migration/views.py | 3 +++ 7 files changed, 18 insertions(+) create mode 100644 backend/census_historical_migration/__init__.py create mode 100644 backend/census_historical_migration/admin.py create mode 100644 backend/census_historical_migration/apps.py create mode 100644 backend/census_historical_migration/migrations/__init__.py create mode 100644 backend/census_historical_migration/models.py create mode 100644 backend/census_historical_migration/tests.py create mode 100644 backend/census_historical_migration/views.py diff --git a/backend/census_historical_migration/__init__.py b/backend/census_historical_migration/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/backend/census_historical_migration/admin.py b/backend/census_historical_migration/admin.py new file mode 100644 index 0000000000..ea5d68b7c4 --- /dev/null +++ b/backend/census_historical_migration/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/backend/census_historical_migration/apps.py b/backend/census_historical_migration/apps.py new file mode 100644 index 0000000000..4aef3048b6 --- /dev/null +++ b/backend/census_historical_migration/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class CensusHistoricalMigrationConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'census_historical_migration' diff --git a/backend/census_historical_migration/migrations/__init__.py b/backend/census_historical_migration/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/backend/census_historical_migration/models.py b/backend/census_historical_migration/models.py new file mode 100644 index 0000000000..fd18c6eac0 --- /dev/null +++ b/backend/census_historical_migration/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/backend/census_historical_migration/tests.py b/backend/census_historical_migration/tests.py new file mode 100644 index 0000000000..de8bdc00eb --- /dev/null +++ b/backend/census_historical_migration/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/backend/census_historical_migration/views.py b/backend/census_historical_migration/views.py new file mode 100644 index 0000000000..c60c790437 --- /dev/null +++ b/backend/census_historical_migration/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.