Skip to content

Commit

Permalink
fixing initial migration with updated help text
Browse files Browse the repository at this point in the history
  • Loading branch information
macdiesel committed Nov 25, 2015
1 parent 9d64d9b commit 05bebd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion organizations/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Migration(migrations.Migration):
('name', models.CharField(max_length=255, verbose_name=b'Long name', db_index=True)),
('short_name', models.CharField(max_length=255, db_index=True)),
('description', models.TextField()),
('logo', models.ImageField(help_text='Organization logo file. It should be an image.', max_length=255, null=True, upload_to=b'organization_logos', blank=True)),
('logo', models.ImageField(help_text='Please add only .PNG files for logo images.', max_length=255, null=True, upload_to=b'organization_logos', blank=True)),
('active', models.BooleanField(default=True)),
],
options={
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='edx-organizations',
version='0.1.8',
version='0.1.9',
description='Organization management module for Open edX',
long_description=open('README.md').read(),
author='edX',
Expand Down

0 comments on commit 05bebd6

Please sign in to comment.