-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding migration and updates to source file columns
- Loading branch information
Showing
3 changed files
with
114 additions
and
25 deletions.
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
jwql/website/apps/jwql/migrations/0027_alter_fgsbadpixelstats_source_files_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,89 @@ | ||
# Generated by Django 5.1 on 2024-11-12 19:09 | ||
|
||
import django.contrib.postgres.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('jwql', '0026_alter_fgsdarkdarkcurrent_amplifier_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='fgsbadpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='fgsdarkdarkcurrent', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='fgsdarkpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='miribadpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='miridarkdarkcurrent', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='miridarkpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nircambadpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nircamdarkdarkcurrent', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nircamdarkpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirissbadpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirissdarkdarkcurrent', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirissdarkpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirspecbadpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirspecdarkdarkcurrent', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
migrations.AlterField( | ||
model_name='nirspecdarkpixelstats', | ||
name='source_files', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=models.CharField(default='empty', help_text='source file names', max_length=1000), blank=True, null=True, size=None), | ||
), | ||
] |
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