summaryrefslogtreecommitdiff
path: root/app/resume/migrations/0009_job_body_html.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-01-13 11:51:02 -0600
committerluxagraf <sng@luxagraf.net>2019-01-13 11:51:02 -0600
commitc4da428fc9ec439389b7473ba5638d9f82085475 (patch)
tree2c135804e201b3008fe56db25d993881a49da686 /app/resume/migrations/0009_job_body_html.py
parent120021d565eefa0318c487f0ff5707c7b9893b43 (diff)
updated income and resume apps
Diffstat (limited to 'app/resume/migrations/0009_job_body_html.py')
-rw-r--r--app/resume/migrations/0009_job_body_html.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/resume/migrations/0009_job_body_html.py b/app/resume/migrations/0009_job_body_html.py
new file mode 100644
index 0000000..fdeea15
--- /dev/null
+++ b/app/resume/migrations/0009_job_body_html.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.1.1 on 2019-01-13 11:46
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('resume', '0008_auto_20190113_1139'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='job',
+ name='body_html',
+ field=models.TextField(blank=True, null=True),
+ ),
+ ]