Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ac-7 module changes completed #1634

Merged
merged 5 commits into from
Oct 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added migration file for the attributes changed in online_cms module
Lone24wolf committed Oct 21, 2024
commit 463b839354fcef0ca210f23eb394bfe77df6beff
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Generated by Django 3.1.5 on 2024-10-21 03:31

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('online_cms', '0001_initial'),
]

operations = [
migrations.RemoveField(
model_name='student_grades',
name='total_marks',
),
migrations.AddField(
model_name='student_grades',
name='remarks',
field=models.CharField(max_length=500, null=True),
),
migrations.AddField(
model_name='student_grades',
name='verified',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='attendance',
name='present',
field=models.IntegerField(default=0),
),
migrations.AlterField(
model_name='gradingscheme',
name='type_of_evaluation',
field=models.CharField(max_length=100),
),
]