This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
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 #266 from WordPress/filetype
- Loading branch information
Showing
6 changed files
with
147 additions
and
25 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,43 @@ | ||
# Generated by Django 3.2.7 on 2021-10-05 14:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0037_media_thumbnails'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='audio', | ||
name='filetype', | ||
field=models.CharField(blank=True, help_text='The type of the file, related to the file extension.', max_length=80, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='audioset', | ||
name='filetype', | ||
field=models.CharField(blank=True, help_text='The type of the file, related to the file extension.', max_length=80, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='image', | ||
name='filetype', | ||
field=models.CharField(blank=True, help_text='The type of the file, related to the file extension.', max_length=80, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='audio', | ||
name='filesize', | ||
field=models.IntegerField(blank=True, help_text='Number in bytes, e.g. 1024.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='audioset', | ||
name='filesize', | ||
field=models.IntegerField(blank=True, help_text='Number in bytes, e.g. 1024.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='image', | ||
name='filesize', | ||
field=models.IntegerField(blank=True, help_text='Number in bytes, e.g. 1024.', null=True), | ||
), | ||
] |
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