Commit 1eb2ded7 authored by Ilya Simonov's avatar Ilya Simonov

add video field for upload video to s3

parent 031533ae
......@@ -30,6 +30,7 @@ class VideoAdmin(admin.ModelAdmin):
'slug',
'status',
'description',
's3_file_upload',
'local_file',
's3_file',
'thumbnail',
......
# Generated by Django 4.1.7 on 2023-03-29 12:39
from django.db import migrations, models
import storages.backends.s3boto3
class Migration(migrations.Migration):
dependencies = [
('core', '0005_remove_playlist_videos'),
]
operations = [
migrations.AddField(
model_name='video',
name='s3_file_upload',
field=models.FileField(blank=True, max_length=500, null=True, storage=storages.backends.s3boto3.S3Boto3Storage(bucket_name='clutchpoints-videos'), upload_to='', verbose_name='AWS S3 file'),
),
]
......@@ -111,6 +111,13 @@ class Video(BaseModel):
null=True,
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'),
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