Skip to content

Commit

Permalink
build: Run django-admin makemigrations
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jun 26, 2024
1 parent efb83fc commit 912be3f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions boundaries/migrations/0009_alter_boundaryset_slug.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.25 on 2024-06-26 14:06

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('boundaries', '0008_alter_boundary_extent_alter_boundary_metadata_and_more'),
]

operations = [
migrations.AlterField(
model_name='boundaryset',
name='slug',
field=models.SlugField(help_text="The boundary set's unique identifier, used as a path component in URLs.", max_length=200, primary_key=True, serialize=False),
),
]
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
To run `env PYTHONPATH=$PYTHONPATH:$PWD DJANGO_SETTINGS_MODULE=settings django-admin.py migrate --noinput`.
To run: env PYTHONPATH=$PWD DJANGO_SETTINGS_MODULE=settings django-admin migrate --noinput
"""
import os

Expand Down

0 comments on commit 912be3f

Please sign in to comment.