Skip to content

Commit

Permalink
adiciona migração em modelo top100articlesfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelpezzuto committed Aug 30, 2024
1 parent d131a67 commit 9a71794
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions metrics/migrations/0002_alter_top100articlesfile_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 5.0.7 on 2024-08-30 12:27

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("metrics", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="top100articlesfile",
name="status",
field=models.CharField(
choices=[
("QUE", "Queued"),
("PAR", "Parsing"),
("PRO", "Processed"),
("ERR", "Error"),
("INV", "Invalidated"),
],
default="QUE",
max_length=5,
),
),
]

0 comments on commit 9a71794

Please sign in to comment.