Commit f2d794c1 authored by John Red Medrano's avatar John Red Medrano

alter name

parent 83dbb677
# Generated by Django 2.2 on 2019-10-01 11:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('entities', '0007_auto_20191001_1113'),
]
operations = [
migrations.AlterField(
model_name='department',
name='name',
field=models.CharField(max_length=255),
),
]
...@@ -126,7 +126,7 @@ class Department(AuditClass): ...@@ -126,7 +126,7 @@ class Department(AuditClass):
max_length=255, max_length=255,
default='dept' default='dept'
) )
name = models.CharField(unique=True, max_length=255) name = models.CharField(max_length=255)
class Meta: class Meta:
db_table = 'departments' db_table = 'departments'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment