-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
628b7b2
commit e3024f1
Showing
27 changed files
with
322 additions
and
230 deletions.
There are no files selected for viewing
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
18 changes: 18 additions & 0 deletions
18
DOSPORTAL/migrations/0002_rename_metadata_record_metadatar.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.11 on 2024-03-28 17:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='record', | ||
old_name='metadata', | ||
new_name='metadatar', | ||
), | ||
] |
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
DOSPORTAL/migrations/0003_rename_metadatar_record_metadata.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.11 on 2024-03-28 17:22 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0002_rename_metadata_record_metadatar'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='record', | ||
old_name='metadatar', | ||
new_name='metadata', | ||
), | ||
] |
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
DOSPORTAL/migrations/0004_alter_record_log_original_filename_alter_record_text.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,23 @@ | ||
# Generated by Django 4.2.11 on 2024-03-29 20:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0003_rename_metadatar_record_metadata'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='record', | ||
name='log_original_filename', | ||
field=models.CharField(blank=True, max_length=150, null=True, verbose_name='Original filename of log file'), | ||
), | ||
migrations.AlterField( | ||
model_name='record', | ||
name='text', | ||
field=models.TextField(help_text='Text log from detector', verbose_name='Text log'), | ||
), | ||
] |
31 changes: 0 additions & 31 deletions
31
DOSPORTAL/migrations/0004_spectrumdata_metadata_spectrumdata_particles_and_more.py
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
# Generated by Django 4.2.11 on 2024-03-29 20:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0004_alter_record_log_original_filename_alter_record_text'), | ||
] | ||
|
||
#operations = [ | ||
# migrations.AlterField( | ||
# model_name='record', | ||
# name='text', | ||
# field=models.TextField(blank=True, help_text='Text log from detector', null=True, verbose_name='Text log'), | ||
# ), | ||
#] | ||
|
||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='record', | ||
name='text', | ||
field=models.TextField(blank=True, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='record', | ||
name='text', | ||
field=models.TextField(blank=True, help_text='Text log from detector', null=True, verbose_name='Text log'), | ||
), | ||
] |
24 changes: 0 additions & 24 deletions
24
DOSPORTAL/migrations/0005_alter_spectrumdata_metadata_and_more.py
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
# Generated by Django 4.2.11 on 2024-03-29 20:41 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0005_alter_record_text'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='record', | ||
name='text', | ||
), | ||
] |
23 changes: 0 additions & 23 deletions
23
DOSPORTAL/migrations/0006_spectrumdata_integration_alter_spectrumdata_spectrum.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.11 on 2024-03-29 21:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('DOSPORTAL', '0006_remove_record_text'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='record', | ||
name='data_file', | ||
field=models.FileField(blank=True, help_text='Processed spectral file', null=True, upload_to='', verbose_name='Log file'), | ||
), | ||
] |
Oops, something went wrong.