-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into i182_relationship_form
- Loading branch information
Showing
18 changed files
with
410 additions
and
153 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
create-asana-attachment-job: | ||
runs-on: ubuntu-latest | ||
name: Create pull request attachments on Asana tasks | ||
steps: | ||
- name: Create pull request attachments | ||
uses: Asana/create-app-attachment-github-action@latest | ||
id: postAttachment | ||
with: | ||
asana-secret: ${{ secrets.ASANA_SECRET }} | ||
- name: Log output status | ||
run: echo "Status is ${{ steps.postAttachment.outputs.status }}" |
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
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,71 @@ | ||
# Generated by Django 3.2.25 on 2024-10-16 22:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('TEKDB', '0015_auto_20241004_1559'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='mediabulkupload', | ||
name='created_at', | ||
), | ||
migrations.RemoveField( | ||
model_name='mediabulkupload', | ||
name='updated_at', | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='enteredbydate', | ||
field=models.DateTimeField(auto_now_add=True, db_column='enteredbydate', null=True, verbose_name='entered by date'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='enteredbyname', | ||
field=models.CharField(blank=True, db_column='enteredbyname', max_length=25, null=True, verbose_name='entered by name'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='enteredbytitle', | ||
field=models.CharField(blank=True, db_column='enteredbytitle', max_length=100, null=True, verbose_name='entered by title'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='enteredbytribe', | ||
field=models.CharField(blank=True, db_column='enteredbytribe', max_length=100, null=True, verbose_name='entered by tribe'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='modifiedbydate', | ||
field=models.DateTimeField(auto_now=True, db_column='modifiedbydate', null=True, verbose_name='modified by date'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='modifiedbyname', | ||
field=models.CharField(blank=True, db_column='modifiedbyname', max_length=25, null=True, verbose_name='modified by name'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='modifiedbytitle', | ||
field=models.CharField(blank=True, db_column='modifiedbytitle', max_length=100, null=True, verbose_name='modified by title'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='modifiedbytribe', | ||
field=models.CharField(blank=True, db_column='modifiedbytribe', max_length=100, null=True, verbose_name='modified by tribe'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='needsReview', | ||
field=models.BooleanField(db_column='needsreview', default=True, verbose_name='Needs Review'), | ||
), | ||
migrations.AddField( | ||
model_name='mediabulkupload', | ||
name='researchComments', | ||
field=models.TextField(blank=True, db_column='researchcomments', default=None, null=True, verbose_name='Research Comments'), | ||
), | ||
] |
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 3.2.25 on 2024-10-16 22:52 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('TEKDB', '0016_auto_20241016_1549'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='mediabulkupload', | ||
old_name='date', | ||
new_name='mediabulkdate', | ||
), | ||
migrations.RenameField( | ||
model_name='mediabulkupload', | ||
old_name='description', | ||
new_name='mediabulkdescription', | ||
), | ||
migrations.RenameField( | ||
model_name='mediabulkupload', | ||
old_name='name', | ||
new_name='mediabulkname', | ||
), | ||
migrations.RemoveField( | ||
model_name='mediabulkupload', | ||
name='user', | ||
), | ||
] |
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,28 @@ | ||
# Generated by Django 3.2.25 on 2024-10-22 23:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('TEKDB', '0017_auto_20241016_1552'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='mediabulkupload', | ||
name='mediabulkdate', | ||
field=models.DateField(blank=True, default=None, null=True, verbose_name='date'), | ||
), | ||
migrations.AlterField( | ||
model_name='mediabulkupload', | ||
name='mediabulkdescription', | ||
field=models.TextField(blank=True, null=True, verbose_name='description'), | ||
), | ||
migrations.AlterField( | ||
model_name='mediabulkupload', | ||
name='mediabulkname', | ||
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Generated by Django 3.2.25 on 2024-10-25 20:19 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('TEKDB', '0017_auto_20241016_1552'), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name='SearchSettings', | ||
), | ||
] |
Oops, something went wrong.