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
c3383e8f
Commit
c3383e8f
authored
Feb 21, 2023
by
Migs Atienza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Models + Migrated v2
parent
198d04f3
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 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
0004_alter_song_song_length.py
..._music/homepage/migrations/0004_alter_song_song_length.py
+18
-0
0003_alter_song_lyrics.cpython-39.pyc
...rations/__pycache__/0003_alter_song_lyrics.cpython-39.pyc
+0
-0
0004_alter_song_song_length.cpython-39.pyc
...ns/__pycache__/0004_alter_song_song_length.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 @
c3383e8f
No preview for this file type
migs_atienza_music/homepage/__pycache__/models.cpython-39.pyc
View file @
c3383e8f
No preview for this file type
migs_atienza_music/homepage/migrations/0004_alter_song_song_length.py
0 → 100644
View file @
c3383e8f
# Generated by Django 4.1.6 on 2023-02-21 14:27
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0003_alter_song_lyrics'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'song'
,
name
=
'song_length'
,
field
=
models
.
DurationField
(),
),
]
migs_atienza_music/homepage/migrations/__pycache__/0003_alter_song_lyrics.cpython-39.pyc
View file @
c3383e8f
No preview for this file type
migs_atienza_music/homepage/migrations/__pycache__/0004_alter_song_song_length.cpython-39.pyc
0 → 100644
View file @
c3383e8f
File added
migs_atienza_music/homepage/models.py
View file @
c3383e8f
...
@@ -21,7 +21,7 @@ class Song(models.Model):
...
@@ -21,7 +21,7 @@ class Song(models.Model):
song_title
=
models
.
CharField
(
max_length
=
100
)
song_title
=
models
.
CharField
(
max_length
=
100
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
album
=
models
.
ForeignKey
(
Album
,
on_delete
=
models
.
CASCADE
)
album
=
models
.
ForeignKey
(
Album
,
on_delete
=
models
.
CASCADE
)
song_length
=
models
.
Time
Field
()
song_length
=
models
.
Duration
Field
()
music_video
=
models
.
BooleanField
(
default
=
False
)
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
TextField
(
max_length
=
2500
,
default
=
""
)
lyrics
=
models
.
TextField
(
max_length
=
2500
,
default
=
""
)
# Create your models here.
# 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