-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
9 changed files
with
119 additions
and
6 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
apps/iiif/annotations/migrations/0010_auto_20230925_2040.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 3.2.15 on 2023-09-25 20:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('annotations', '0009_auto_20220607_1453'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='annotation', | ||
name='oa_annotation', | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='annotation', | ||
name='purpose', | ||
field=models.CharField(choices=[('AS', 'Assessing'), ('BM', 'Bookmarking'), ('CL', 'Classifying'), ('CM', 'Commenting'), ('DS', 'Describing'), ('ED', 'Editing'), ('HL', 'Highlighting'), ('ID', 'Identifying'), ('LK', 'Linking'), ('MO', 'Moderating'), ('PT', 'Painting'), ('QT', 'Questioning'), ('RE', 'Replying'), ('SP', 'Supplementing'), ('TG', 'Tagging')], default='SP', max_length=2), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
apps/iiif/kollections/migrations/0024_alter_collection_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 3.2.15 on 2023-09-25 20:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('kollections', '0023_auto_20220607_1453'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='collection', | ||
name='metadata', | ||
field=models.JSONField(null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
apps/iiif/manifests/migrations/0056_alter_manifest_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 3.2.15 on 2023-09-25 20:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('manifests', '0055_alter_manifest_logo_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='manifest', | ||
name='metadata', | ||
field=models.JSONField(blank=True, default=dict), | ||
), | ||
] |
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.15 on 2023-09-25 20:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ingest', '0036_alter_s3ingest_metadata_spreadsheet'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='local', | ||
name='metadata', | ||
field=models.JSONField(blank=True, default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='remote', | ||
name='metadata', | ||
field=models.JSONField(blank=True, default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='s3ingest', | ||
name='s3_bucket', | ||
field=models.CharField(help_text="The name of a publicly-accessible S3 bucket containing volumes to\n ingest, either at the bucket root or within subfolder(s). Each volume should have its own\n subfolder, with the volume's PID as its name.\n <br />\n <strong>Example:</strong> if the bucket's URL is\n https://my-bucket.s3.us-east-1.amazonaws.com/, its name is <strong>my-bucket</strong>.", max_length=255), | ||
), | ||
] |
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 3.2.15 on 2023-09-25 20:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('readux', '0010_auto_20220607_1453'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='userannotation', | ||
name='oa_annotation', | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='userannotation', | ||
name='purpose', | ||
field=models.CharField(choices=[('AS', 'Assessing'), ('BM', 'Bookmarking'), ('CL', 'Classifying'), ('CM', 'Commenting'), ('DS', 'Describing'), ('ED', 'Editing'), ('HL', 'Highlighting'), ('ID', 'Identifying'), ('LK', 'Linking'), ('MO', 'Moderating'), ('PT', 'Painting'), ('QT', 'Questioning'), ('RE', 'Replying'), ('SP', 'Supplementing'), ('TG', 'Tagging')], default='SP', max_length=2), | ||
), | ||
] |
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