evorepo/packages/migrations/0002_flagdenylist.py
Jelle van der Waa 3f807c8e18 Add rebuilderd status to the package details page
The reproducible status is now shown for logged in users, as the
reproducible effort is still much experimental and so to not confuse not
logged in users.
2021-06-20 19:38:37 +02:00

21 lines
538 B
Python

# Generated by Django 3.2.3 on 2021-06-17 14:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('packages', '0001_squashed_0003_auto_20170524_0704'),
]
operations = [
migrations.CreateModel(
name='FlagDenylist',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('keyword', models.CharField(max_length=255)),
],
),
]