Commit e190ff9c authored by Ilya Simonov's avatar Ilya Simonov

delete old field

parent 215b5bb1
...@@ -30,7 +30,6 @@ class VideoAdmin(admin.ModelAdmin): ...@@ -30,7 +30,6 @@ class VideoAdmin(admin.ModelAdmin):
'slug', 'slug',
'status', 'status',
'description', 'description',
's3_file_upload',
'local_file', 'local_file',
's3_file', 's3_file',
'thumbnail', 'thumbnail',
......
# Generated by Django 4.1.7 on 2023-04-03 10:42
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('core', '0007_alter_video_creator_alter_video_s3_file_upload'),
]
operations = [
migrations.AlterModelOptions(
name='video',
options={'verbose_name': 'Video', 'verbose_name_plural': 'Videos'},
),
migrations.RemoveField(
model_name='video',
name='s3_file_upload',
),
]
...@@ -111,13 +111,6 @@ class Video(BaseModel): ...@@ -111,13 +111,6 @@ class Video(BaseModel):
null=True, null=True,
max_length=500, max_length=500,
) )
s3_file_upload = models.FileField(
_('AWS S3 file upload'),
storage=S3Boto3Storage(bucket_name='clutchpoints-videos'),
blank=True,
null=True,
max_length=500,
)
thumbnail = models.ImageField( thumbnail = models.ImageField(
_('thumbnail'), _('thumbnail'),
upload_to=asset_upload, upload_to=asset_upload,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment