-
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 pull request #431 from geoadmin/feat-PB-769-assets
PB-769: STAC v1 optional asset features
- Loading branch information
Showing
16 changed files
with
1,636 additions
and
297 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 5.0.6 on 2024-07-09 14:10 | ||
|
||
import django.contrib.postgres.fields | ||
from django.db import migrations | ||
from django.db import models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('stac_api', '0034_merge_0032_alter_asset_file_0033_auto_20240704_1157'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='asset', | ||
name='roles', | ||
field=django.contrib.postgres.fields.ArrayField( | ||
base_field=models.CharField(max_length=255), | ||
blank=True, | ||
default=None, | ||
help_text='Comma-separated list of roles to describe the purpose of the asset', | ||
null=True, | ||
size=None | ||
), | ||
), | ||
] |
Oops, something went wrong.