Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
neolithic_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
Neo Emmanuel Ballesteros
neolithic_music
Commits
1d247091
Commit
1d247091
authored
Feb 21, 2023
by
Neo Emmanuel Ballesteros
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Database formed
parent
dc0f0391
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
1 deletion
+19
-1
db.sqlite3
db.sqlite3
+0
-0
admin.cpython-311.pyc
homepage/__pycache__/admin.cpython-311.pyc
+0
-0
models.cpython-311.pyc
homepage/__pycache__/models.cpython-311.pyc
+0
-0
0003_alter_song_song_length.py
homepage/migrations/0003_alter_song_song_length.py
+18
-0
0003_alter_song_song_length.cpython-311.pyc
...s/__pycache__/0003_alter_song_song_length.cpython-311.pyc
+0
-0
models.py
homepage/models.py
+1
-1
No files found.
db.sqlite3
View file @
1d247091
No preview for this file type
homepage/__pycache__/admin.cpython-311.pyc
View file @
1d247091
No preview for this file type
homepage/__pycache__/models.cpython-311.pyc
View file @
1d247091
No preview for this file type
homepage/migrations/0003_alter_song_song_length.py
0 → 100644
View file @
1d247091
# Generated by Django 4.1.7 on 2023-02-21 14:49
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
=
'song_length'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
10
,
null
=
True
),
),
]
homepage/migrations/__pycache__/0003_alter_song_song_length.cpython-311.pyc
0 → 100644
View file @
1d247091
File added
homepage/models.py
View file @
1d247091
...
...
@@ -18,6 +18,6 @@ class Song(models.Model):
song_title
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
,
null
=
True
)
artist
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
,
null
=
True
)
album
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
,
null
=
True
)
song_length
=
models
.
IntegerField
(
blank
=
True
,
null
=
True
)
song_length
=
models
.
CharField
(
max_length
=
10
,
blank
=
True
,
null
=
True
)
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
TextField
(
blank
=
True
,
null
=
True
)
\ No newline at end of file
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