diff options
author | luxagraf <sng@luxagraf.net> | 2015-12-07 20:19:06 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-12-07 20:19:06 -0500 |
commit | 6ad212ae8a542e93d173c2b8e6efcd68109380c8 (patch) | |
tree | a0ed068b994e40373a506196d57e48fdd673e6a2 /app/pages/migrations/0002_page_path.py | |
parent | e4a7f290d373427c36d7925e7381aadf16524936 (diff) |
added ability to edit resume landing and cv from pages app
Diffstat (limited to 'app/pages/migrations/0002_page_path.py')
-rw-r--r-- | app/pages/migrations/0002_page_path.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/pages/migrations/0002_page_path.py b/app/pages/migrations/0002_page_path.py new file mode 100644 index 0000000..e09bfbc --- /dev/null +++ b/app/pages/migrations/0002_page_path.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2015-12-03 17:12 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pages', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='page', + name='path', + field=models.CharField(blank=True, max_length=200, null=True), + ), + ] |