This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #429 from OBDDimal/426-optimize-fm-table
426 optimize fm table
- Loading branch information
Showing
21 changed files
with
589 additions
and
158 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
backend/core/analysis/migrations/0019_remove_dockerprocess_file_to_analyse_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.2 on 2023-10-19 12:50 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core_analysis', '0018_alter_dockerprocess_resources'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='dockerprocess', | ||
name='file_to_analyse', | ||
), | ||
migrations.RemoveField( | ||
model_name='dockerprocess', | ||
name='owner', | ||
), | ||
migrations.DeleteModel( | ||
name='Analysis', | ||
), | ||
migrations.DeleteModel( | ||
name='DockerProcess', | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
backend/core/fileupload/migrations/0012_alter_license_label.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.2 on 2023-10-19 12:50 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core_fileupload', '0011_analysisresult'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='license', | ||
name='label', | ||
field=models.TextField(default='CC BY - SA 4.0 DEED'), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
backend/core/fileupload/migrations/0013_file_private_alter_file_family_alter_file_version.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.2 on 2023-10-23 13:08 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core_fileupload', '0012_alter_license_label'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='file', | ||
name='family', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='core_fileupload.family'), | ||
), | ||
migrations.AlterField( | ||
model_name='file', | ||
name='version', | ||
field=models.CharField(blank=True, max_length=16, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.2 on 2023-10-26 07:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core_fileupload', '0013_file_private_alter_file_family_alter_file_version'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='file', | ||
name='private', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.