Skip to content

Commit 9ba6ceb

Browse files
committed
archivos migrations
1 parent fed43cc commit 9ba6ceb

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by Django 5.0.8 on 2025-02-14 21:02
2+
3+
import django.core.validators
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('reference', '0001_initial'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='elementcitation',
16+
name='score',
17+
field=models.IntegerField(blank=True, help_text='Rating from 1 to 10', null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(10)]),
18+
),
19+
]
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.0.8 on 2025-03-02 07:02
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('reference', '0002_alter_elementcitation_score'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='elementcitation',
15+
name='marked_xml',
16+
field=models.TextField(blank=True, verbose_name='Marked XML'),
17+
),
18+
]

0 commit comments

Comments
 (0)