mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-26 18:02:18 +00:00
FIX: Migrations
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Generated by Django 2.0.13 on 2020-02-08 23:04
|
# Generated by Django 2.0.13 on 2020-02-18 16:02
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
@@ -7,6 +7,8 @@ import django.db.models.deletion
|
|||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
replaces = [('assets', '0011_auto_20200208_2304'), ('assets', '0012_auto_20200218_1601')]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||||
('assets', '0010_auto_20200207_1737'),
|
('assets', '0010_auto_20200207_1737'),
|
||||||
@@ -23,4 +25,9 @@ class Migration(migrations.Migration):
|
|||||||
name='last_audited_by',
|
name='last_audited_by',
|
||||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='audited_by', to=settings.AUTH_USER_MODEL),
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='audited_by', to=settings.AUTH_USER_MODEL),
|
||||||
),
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='asset',
|
||||||
|
name='csa',
|
||||||
|
field=models.DecimalField(blank=True, decimal_places=2, help_text='mm²', max_digits=10, null=True),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user