Skip to content

Commit

Permalink
Merge pull request #16 from edx/bbeggs/dj18-migration-fix
Browse files Browse the repository at this point in the history
Fixed initial migration with updated help text
  • Loading branch information
Brian Beggs committed Nov 26, 2015
2 parents 9d64d9b + 05bebd6 commit 059bd04
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 059bd04

Please sign in to comment.