suppresion migrations
This commit is contained in:
parent
8e6ca0cc86
commit
280e0c625d
5 changed files with 0 additions and 129 deletions
|
@ -1,41 +0,0 @@
|
|||
# Generated by Django 2.2.25 on 2022-01-06 16:43
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("partitions", "0004_auto_20210331_1350"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="SetList",
|
||||
fields=[
|
||||
(
|
||||
"id",
|
||||
models.AutoField(
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
verbose_name="ID",
|
||||
),
|
||||
),
|
||||
("date", models.DateField(verbose_name="Date de la répèt")),
|
||||
(
|
||||
"is_current",
|
||||
models.BooleanField(
|
||||
default=False, verbose_name="Afficher la répèt"
|
||||
),
|
||||
),
|
||||
(
|
||||
"morceaux",
|
||||
models.ManyToManyField(
|
||||
to="partitions.PartitionSet",
|
||||
verbose_name="Morceaux de la répèt",
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
]
|
|
@ -1,21 +0,0 @@
|
|||
# Generated by Django 2.2.25 on 2022-01-08 21:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("partitions", "0005_setlist"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="setlist",
|
||||
name="morceaux",
|
||||
field=models.ManyToManyField(
|
||||
to="partitions.PartitionSet",
|
||||
verbose_name="Morceaux de la répèt (ctrl ou cmd pour en selectionner plusieurs",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -1,21 +0,0 @@
|
|||
# Generated by Django 2.2.25 on 2022-01-08 22:00
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("partitions", "0006_auto_20220108_2158"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="setlist",
|
||||
name="morceaux",
|
||||
field=models.ManyToManyField(
|
||||
to="partitions.PartitionSet",
|
||||
verbose_name="Morceaux de la répèt (ctrl ou cmd pour en selectionner plusieurs)",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -1,23 +0,0 @@
|
|||
# Generated by Django 2.2.25 on 2022-01-08 23:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("partitions", "0007_auto_20220108_2200"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="setlist",
|
||||
name="is_current",
|
||||
field=models.CharField(
|
||||
choices=[("y", "Oui"), ("n", "Non")],
|
||||
default="y",
|
||||
max_length=1,
|
||||
verbose_name="Afficher la répèt (les répèt de plus d'une semaine ne sont pas affiché d'office)",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -1,23 +0,0 @@
|
|||
# Generated by Django 2.2.25 on 2022-01-09 00:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("partitions", "0008_auto_20220108_2350"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="setlist",
|
||||
name="is_current",
|
||||
field=models.CharField(
|
||||
choices=[("y", "Oui"), ("n", "Non")],
|
||||
default="y",
|
||||
max_length=1,
|
||||
verbose_name="Afficher la répèt (les répèt vieilles de plus d'une semaine ne sont pas affiché d'office)",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue