Skip to content

Commit

Permalink
Merge branch 'master' into fix-pm-field-permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-antupit authored Aug 1, 2024
2 parents 434e593 + 21a089a commit dfa6fac
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
19 changes: 19 additions & 0 deletions accounts/migrations/0012_auto_20240731_1407.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.1.3 on 2024-07-31 18:07

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0011_auto_20230905_1623'),
]

operations = [
migrations.AlterField(
model_name='user',
name='class_year',
field=models.PositiveIntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1962), django.core.validators.MaxValueValidator(2030)]),
),
]
18 changes: 18 additions & 0 deletions devices/migrations/0012_auto_20230905_2250.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2023-09-06 02:50

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('devices', '0011_auto_20230905_1623'),
]

operations = [
migrations.AlterField(
model_name='configurationprofile',
name='profile',
field=models.FilePathField(match='.*\\.json$', path='/home/lnl/public_html/media/profiles'),
),
]

0 comments on commit dfa6fac

Please sign in to comment.