Commit bafa5781 authored by Deokhyun Lee's avatar Deokhyun Lee

migration under homepage is done

parent 6236e85a
Pipeline #2630 canceled with stages
......@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'homepage.apps.HomepageConfig'
]
MIDDLEWARE = [
......
......@@ -21,6 +21,7 @@ from django.urls import include, path
# localhost:<port>/hompage
# localhost:<port>/about
# localhost:<port>/contact
# fo
urlpatterns = [
path('admin/', admin.site.urls),
path('homepage/', include('homepage.urls')),
......
No preview for this file type
# Generated by Django 3.2 on 2023-02-13 08:48
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Album',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('album_name', models.CharField(max_length=100)),
('artist', models.CharField(max_length=50)),
('description', models.CharField(max_length=150)),
('release_date', models.DateTimeField(verbose_name='date published')),
],
),
migrations.CreateModel(
name='Artist',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('artist_name', models.CharField(max_length=50)),
('monthly_listeners', models.IntegerField()),
],
),
migrations.CreateModel(
name='Song',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('song_title', models.CharField(max_length=100)),
('artist', models.CharField(max_length=50)),
('song_length', models.IntegerField()),
('album', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='homepage.album')),
],
),
]
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