Skip to content

Commit

Permalink
Update 0001_initial.py
Browse files Browse the repository at this point in the history
  • Loading branch information
williamputraintan committed Sep 19, 2024
1 parent ef3984b commit ddcb135
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.1 on 2024-09-18 11:57
# Generated by Django 5.1 on 2024-09-19 01:23

import django.core.validators
import django.db.models.deletion
Expand Down Expand Up @@ -188,7 +188,7 @@ class Migration(migrations.Migration):
('project_id', models.CharField(blank=True, null=True, unique=True)),
('name', models.CharField(blank=True, null=True)),
('description', models.CharField(blank=True, null=True)),
('contact_set', models.ManyToManyField(blank=True, null=True, related_name='project_set', to='app.contact')),
('contact_set', models.ManyToManyField(blank=True, related_name='project_set', to='app.contact')),
],
options={
'abstract': False,
Expand Down Expand Up @@ -245,7 +245,7 @@ class Migration(migrations.Migration):
fields=[
('orcabus_id', models.CharField(editable=False, primary_key=True, serialize=False, unique=True, validators=[django.core.validators.RegexValidator(code='invalid_orcabus_id', message='ULID is expected to be 26 characters long', regex='[\\w]{26}$')])),
('subject_id', models.CharField(blank=True, null=True, unique=True)),
('individual_set', models.ManyToManyField(blank=True, null=True, related_name='subject_set', to='app.individual')),
('individual_set', models.ManyToManyField(blank=True, related_name='subject_set', to='app.individual')),
],
options={
'abstract': False,
Expand Down

0 comments on commit ddcb135

Please sign in to comment.