Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free triallevan danelia
147 PointsHello, migration doesn't create Course's columns ( Created_at, Title .... )
in initial.py file there are only
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Course',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
],
),
]
I have tried to delete and then migrate again but doesn't work.
4 Answers
KRIS NIKOLAISEN
54,971 PointsIt looks like you are missing code in what you posted. See @6:06 of the video
levan danelia
147 PointsDo I have to create with my own? I thought it automatically creates from models.py
KRIS NIKOLAISEN
54,971 PointsCan you post a snapshot? Click the camera icon in the upper right corner, then 'Take Snapshot', then post the link created here.
levan danelia
147 PointsI am not using Workspace, I’ve tried in visual studio code