diff options
author | luxagraf <sng@luxagraf.net> | 2016-03-20 21:30:28 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-03-20 21:30:28 -0400 |
commit | 96d80eaf238045faba45cd4b64a8d93d19a98a69 (patch) | |
tree | a12bb2c4fe7573946942c425a2d15044f7e20e4c /app/photos/migrations/0004_luximage_alt.py | |
parent | 86bb919d5e87b33f93c2d09c6fe36eb2f393b7e6 (diff) |
Wrote image app to work with other models. Broke galleries badly, need
to fix before posting again. Also major admin image move to pull off.
Diffstat (limited to 'app/photos/migrations/0004_luximage_alt.py')
-rw-r--r-- | app/photos/migrations/0004_luximage_alt.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/photos/migrations/0004_luximage_alt.py b/app/photos/migrations/0004_luximage_alt.py new file mode 100644 index 0000000..ecbaf56 --- /dev/null +++ b/app/photos/migrations/0004_luximage_alt.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-03-16 22:45 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('photos', '0003_luxgallery_caption_style'), + ] + + operations = [ + migrations.AddField( + model_name='luximage', + name='alt', + field=models.CharField(blank=True, max_length=300, null=True), + ), + ] |