Commit 984276f6 authored by Chester Tan's avatar Chester Tan

added Assignment model to assignments app

parent 71b255c1
# Generated by Django 4.0.3 on 2022-03-22 06:12
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Assignment',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=10)),
('description', models.TextField(max_length=500)),
('max_points', models.IntegerField()),
],
),
]
from django.db import models
# Create your models here.
class Assignment(models.Model):
name=models.CharField(max_length=10)
description=models.TextField(max_length=500)
max_points=models.IntegerField()
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