Skip to content

Commit

Permalink
MS file data migration was not there
Browse files Browse the repository at this point in the history
  • Loading branch information
glormph committed Jan 10, 2025
1 parent c6fdb17 commit 3c26454
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/backend/rawstatus/migrations/0032_msfiledata.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.13 on 2025-01-10 16:24

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('rawstatus', '0031_remove_uploadtoken_is_library_uploadtoken_uploadtype'),
]

operations = [
migrations.CreateModel(
name='MSFileData',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('mstime', models.FloatField()),
('rawfile', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='rawstatus.rawfile')),
],
),
]

0 comments on commit 3c26454

Please sign in to comment.