First commit of the V2.
New base, new info.
This commit is contained in:
22
music/migrations/0001_initial.py
Normal file
22
music/migrations/0001_initial.py
Normal file
@ -0,0 +1,22 @@
|
||||
# Generated by Django 2.0.3 on 2018-03-21 13:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Songs',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('title', models.CharField(max_length=255)),
|
||||
('artist', models.CharField(max_length=255)),
|
||||
],
|
||||
),
|
||||
]
|
0
music/migrations/__init__.py
Normal file
0
music/migrations/__init__.py
Normal file
Reference in New Issue
Block a user