summaryrefslogtreecommitdiff
path: root/app/resume/migrations
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-01-17 10:35:34 -0600
committerluxagraf <sng@luxagraf.net>2019-01-17 10:35:34 -0600
commit932fc0985e3e94feecb012fff4c873c917d9f5be (patch)
treed194c26ff34657fdfd78da836150c89bfb281653 /app/resume/migrations
parentc4da428fc9ec439389b7473ba5638d9f82085475 (diff)
updated resume app
Diffstat (limited to 'app/resume/migrations')
-rw-r--r--app/resume/migrations/0011_auto_20190114_0227.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/resume/migrations/0011_auto_20190114_0227.py b/app/resume/migrations/0011_auto_20190114_0227.py
new file mode 100644
index 0000000..7656c6e
--- /dev/null
+++ b/app/resume/migrations/0011_auto_20190114_0227.py
@@ -0,0 +1,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),
+ ),
+ ]