mirror of
https://github.com/ae-utbm/sith.git
synced 2026-09-18 10:14:24 +00:00
Compare commits
1
Commits
taiste
...
fix-migrations
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62b49240d1 |
@@ -18,7 +18,7 @@ class Migration(migrations.Migration):
|
|||||||
"Groups that are automatically given or removed "
|
"Groups that are automatically given or removed "
|
||||||
"to user receiving or losing this club role"
|
"to user receiving or losing this club role"
|
||||||
),
|
),
|
||||||
related_name="club_roles",
|
related_name="linked_roles",
|
||||||
to="core.group",
|
to="core.group",
|
||||||
verbose_name="Linked groups",
|
verbose_name="Linked groups",
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ class Migration(migrations.Migration):
|
|||||||
model_name="permanency",
|
model_name="permanency",
|
||||||
name="end",
|
name="end",
|
||||||
field=models.DateTimeField(
|
field=models.DateTimeField(
|
||||||
db_index=True, verbose_name="end date", null=True
|
db_index=True, verbose_name="end date", null=True, blank=True
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -6,9 +6,7 @@ from django.db import migrations, models
|
|||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [
|
dependencies = [("counter", "0018_producttype_priority")]
|
||||||
("counter", "0018_producttype_priority"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterModelOptions(
|
migrations.AlterModelOptions(
|
||||||
|
|||||||
@@ -6,9 +6,7 @@ import counter.fields
|
|||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [
|
dependencies = [("counter", "0019_billinginfo")]
|
||||||
("counter", "0019_billinginfo"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
|
|||||||
Reference in New Issue
Block a user