Migrate some models in a new app

This commit is contained in:
2021-12-20 22:47:45 +01:00
parent 9879a8ae62
commit c5bc00d925
13 changed files with 155 additions and 36 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.0 on 2021-12-20 21:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('metadata', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='decoder',
name='version',
field=models.CharField(blank=True, max_length=64),
),
]