-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added biochem tables to user settings. removed biochem_table from mis…
…sion
- Loading branch information
Showing
7 changed files
with
68 additions
and
16 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
22 changes: 22 additions & 0 deletions
22
core/migrations/0007_remove_mission_biochem_table_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,22 @@ | ||
# Generated by Django 4.2 on 2024-06-27 13:01 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0006_biochemupload_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='mission', | ||
name='biochem_table', | ||
), | ||
migrations.AlterField( | ||
model_name='biochemupload', | ||
name='modified_date', | ||
field=models.DateTimeField(auto_now=True, help_text='The last time this sensor/sample was loaded', null=True, verbose_name='Modified Date'), | ||
), | ||
] |
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
33 changes: 33 additions & 0 deletions
33
settingsdb/migrations/0009_bcdatabaseconnection_bc_discrete_data_edits_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,33 @@ | ||
# Generated by Django 4.2 on 2024-06-27 12:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('settingsdb', '0008_sampletypeconfig_limit_field'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='bcdatabaseconnection', | ||
name='bc_discrete_data_edits', | ||
field=models.CharField(default='BCDISCRETEDATAEDITS', max_length=60, verbose_name='BCD Table Name'), | ||
), | ||
migrations.AddField( | ||
model_name='bcdatabaseconnection', | ||
name='bc_discrete_station_edits', | ||
field=models.CharField(default='BCDISCRETESTATNEDITS', max_length=60, verbose_name='BCD Table Name'), | ||
), | ||
migrations.AddField( | ||
model_name='bcdatabaseconnection', | ||
name='bc_plankton_data_edits', | ||
field=models.CharField(default='BCPLANKTONDATAEDITS', max_length=60, verbose_name='BCD Table Name'), | ||
), | ||
migrations.AddField( | ||
model_name='bcdatabaseconnection', | ||
name='bc_plankton_station_edits', | ||
field=models.CharField(default='BCPLANKTONSTATNEDITS', max_length=60, verbose_name='BCD Table Name'), | ||
), | ||
] |
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