Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
migs_atienza_music
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
Migs Atienza
migs_atienza_music
Commits
198d04f3
Commit
198d04f3
authored
Feb 21, 2023
by
Migs Atienza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Models + Migrated
parent
952bc7ea
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
1 deletion
+19
-1
db.sqlite3
migs_atienza_music/db.sqlite3
+0
-0
models.cpython-39.pyc
..._atienza_music/homepage/__pycache__/models.cpython-39.pyc
+0
-0
0003_alter_song_lyrics.py
...ienza_music/homepage/migrations/0003_alter_song_lyrics.py
+18
-0
0003_alter_song_lyrics.cpython-39.pyc
...rations/__pycache__/0003_alter_song_lyrics.cpython-39.pyc
+0
-0
models.py
migs_atienza_music/homepage/models.py
+1
-1
No files found.
migs_atienza_music/db.sqlite3
View file @
198d04f3
No preview for this file type
migs_atienza_music/homepage/__pycache__/models.cpython-39.pyc
View file @
198d04f3
No preview for this file type
migs_atienza_music/homepage/migrations/0003_alter_song_lyrics.py
0 → 100644
View file @
198d04f3
# Generated by Django 4.1.6 on 2023-02-21 13:46
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0002_album_label_album_song_count_artist_bio_and_more'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'song'
,
name
=
'lyrics'
,
field
=
models
.
TextField
(
default
=
''
,
max_length
=
2500
),
),
]
migs_atienza_music/homepage/migrations/__pycache__/0003_alter_song_lyrics.cpython-39.pyc
0 → 100644
View file @
198d04f3
File added
migs_atienza_music/homepage/models.py
View file @
198d04f3
...
...
@@ -23,5 +23,5 @@ class Song(models.Model):
album
=
models
.
ForeignKey
(
Album
,
on_delete
=
models
.
CASCADE
)
song_length
=
models
.
TimeField
()
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
Char
Field
(
max_length
=
2500
,
default
=
""
)
lyrics
=
models
.
Text
Field
(
max_length
=
2500
,
default
=
""
)
# Create your models here.
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