1
0
Fork 0
satnogs-db/db/base/migrations/0018_artifact.py

22 lines
636 B
Python

# Generated by Django 2.2.12 on 2020-05-20 16:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('base', '0017_exported_frameset'),
]
operations = [
migrations.CreateModel(
name='Artifact',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('artifact_file', models.FileField(blank=True, null=True, upload_to='artifacts/')),
('network_obs_id', models.BigIntegerField(blank=True, null=True)),
],
),
]