Added graph and table to document
This commit is contained in:
@@ -0,0 +1,128 @@
|
||||
# Generated by Django 5.1.3 on 2025-03-26 18:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0008_documentriskcontrol'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='documentriskcontrol',
|
||||
name='likelihood',
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='annual_revenue',
|
||||
field=models.CharField(help_text="What is your organization's annual revenue range?", max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='compliance_frameworks',
|
||||
field=models.JSONField(help_text='Which regulatory frameworks is your organization required to comply with?'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='critical_applications',
|
||||
field=models.CharField(help_text='How many critical business applications do your employees use daily?', max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='customer_base',
|
||||
field=models.CharField(blank=True, help_text='How would you characterize your customer base distribution?', max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='customer_type',
|
||||
field=models.CharField(blank=True, help_text='What is your primary customer type?', max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='data_sensitivity',
|
||||
field=models.CharField(help_text='What level of sensitive data does your organization process?', max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='email',
|
||||
field=models.EmailField(help_text='What is your email?', max_length=254, unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='employee_headcount',
|
||||
field=models.CharField(help_text="What is your organization's current employee headcount?", max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='geographic_scope',
|
||||
field=models.CharField(blank=True, help_text="What is your organization's geographic operational scope?", max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='industry_sector',
|
||||
field=models.CharField(help_text='What is your primary industry sector?', max_length=255),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='integration_level',
|
||||
field=models.CharField(blank=True, help_text='How integrated are your critical business systems?', max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='intellectual_property',
|
||||
field=models.JSONField(blank=True, help_text='How does your organization protect and manage intellectual property?', null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='internal_software_development',
|
||||
field=models.CharField(help_text='What is the extent of your internal software development activities?', max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='it_dependency',
|
||||
field=models.IntegerField(help_text='On a scale from 1-10, how dependent is your business operations on technology?'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='it_infrastructure',
|
||||
field=models.JSONField(blank=True, help_text='What is your primary IT infrastructure model?', null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='name',
|
||||
field=models.CharField(help_text='What is the name of your organization?', max_length=255, unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='network_infrastructure',
|
||||
field=models.CharField(help_text="What best describes your organization's network infrastructure model?", max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='product_portfolio',
|
||||
field=models.CharField(blank=True, help_text='How diversified is your product/service portfolio?', max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='remote_workforce_percentage',
|
||||
field=models.CharField(help_text='What percentage of your workforce operates remotely?', max_length=20),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='sensitive_data',
|
||||
field=models.JSONField(blank=True, help_text='What type of sensitive data does your organization handle?', null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='supplier_base',
|
||||
field=models.CharField(blank=True, help_text='What is your supplier base structure?', max_length=20, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organization',
|
||||
name='third_party_vendor_access',
|
||||
field=models.CharField(help_text='How many third-party vendors have access to your systems?', max_length=20),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user