Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandr Dzehil
cp_video_dokku
Commits
e190ff9c
Commit
e190ff9c
authored
Apr 03, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete old field
parent
215b5bb1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
8 deletions
+21
-8
admin.cpython-39.pyc
apps/core/__pycache__/admin.cpython-39.pyc
+0
-0
models.cpython-39.pyc
apps/core/__pycache__/models.cpython-39.pyc
+0
-0
admin.py
apps/core/admin.py
+0
-1
0008_alter_video_options_remove_video_s3_file_upload.py
...s/0008_alter_video_options_remove_video_s3_file_upload.py
+21
-0
models.py
apps/core/models.py
+0
-7
No files found.
apps/core/__pycache__/admin.cpython-39.pyc
View file @
e190ff9c
No preview for this file type
apps/core/__pycache__/models.cpython-39.pyc
View file @
e190ff9c
No preview for this file type
apps/core/admin.py
View file @
e190ff9c
...
@@ -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'
,
...
...
apps/core/migrations/0008_alter_video_options_remove_video_s3_file_upload.py
0 → 100644
View file @
e190ff9c
# 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'
,
),
]
apps/core/models.py
View file @
e190ff9c
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment