Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/local' into local
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberamelaek committed Aug 15, 2023
2 parents 7f77d0a + efe94f4 commit b999e62
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Binary file added .manage.py.swp
Binary file not shown.
25 changes: 25 additions & 0 deletions backend/migrations/0003_mainuser.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.1.2 on 2023-08-12 03:17

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('backend', '0002_student'),
]

operations = [
migrations.CreateModel(
name='Mainuser',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('fullname', models.CharField(max_length=100)),
('username', models.CharField(max_length=50)),
('password', models.CharField(max_length=255)),
('email', models.EmailField(max_length=254)),
('j_number', models.IntegerField()),
('role', models.CharField(max_length=50)),
],
),
]

0 comments on commit b999e62

Please sign in to comment.