summaryrefslogtreecommitdiff
path: root/app/resume/migrations/0011_auto_20190114_0227.py
blob: 7656c6e1b31139160c8ff2c27569f25e9c632ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 2.1.1 on 2019-01-14 02:27

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('resume', '0010_auto_20190113_1147'),
    ]

    operations = [
        migrations.AddField(
            model_name='resume',
            name='profile_html',
            field=models.TextField(blank=True),
        ),
        migrations.AddField(
            model_name='resume',
            name='skills_html',
            field=models.TextField(blank=True),
        ),
    ]