mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-04-16 09:37:53 +00:00
Co-authored-by: Alan Buscaglia <gentlemanprogramming@gmail.com> Co-authored-by: Víctor Fernández Poyatos <victor@prowler.com>
22 lines
591 B
Python
22 lines
591 B
Python
from django.contrib.postgres.fields import ArrayField
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("api", "0068_finding_resource_group_scangroupsummary"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="resource",
|
|
name="groups",
|
|
field=ArrayField(
|
|
models.CharField(max_length=100),
|
|
blank=True,
|
|
help_text="Groups for categorization (e.g., compute, storage, IAM)",
|
|
null=True,
|
|
),
|
|
),
|
|
]
|