mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 19:09:36 -06:00
* Closes #8198: Implement ability to enforce custom field uniqueness * Add missing form fields & table columns for validation attributes * Remove obsolete code
17 lines
352 B
Python
17 lines
352 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0116_move_objectchange'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customfield',
|
|
name='validation_unique',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|