Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects

Delete 0002_auto_20191012_2215.py

Closed MISAEL JONATHAN requested to merge patch-2 into master
3 files
+ 0
69
Compare changes
  • Side-by-side
  • Inline
Files
3
# -*- coding: utf-8 -*-
# Generated by Django 1.11.17 on 2019-10-12 15:15
from __future__ import unicode_literals
import core.models.accounts
import django.core.validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='student',
name='photo',
field=models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_student_photo_file_path, validators=[django.core.validators.FileExtensionValidator([b'jpg', b'jpeg', b'png'])]),
),
migrations.AlterField(
model_name='student',
name='resume',
field=models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_student_resume_file_path, validators=[django.core.validators.FileExtensionValidator([b'pdf'])]),
),
]
Loading