Honestly this was really fun to do. I am pretty proud to build an app to successfully work. I was able to create multiple differnt routes including adding movies, searching, updating status, rating, and genre. This project has made me realize how useful it is to understanding how apps are developed. I feel like this is super applicable and super knowledgable to understand. Some skills I learned with this project is how to design and build models, create API routes, working databases, and handling errors.

This commit is contained in:
erbrown2
2026-05-17 18:24:25 -04:00
parent 7f36330fc9
commit 91496c9254
7 changed files with 159 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 5.2.11 on 2026-05-17 21:35
import banjo.models
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('app', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='movie',
name='genre',
field=banjo.models.StringField(blank=True, default='', null=True),
),
]