Skip to content

Commit

Permalink
Added missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
capooti committed Oct 31, 2017
1 parent ace7093 commit 6169bc7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions geonode/base/migrations/0028_resourcebase_is_approved.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('base', '0027_auto_20170801_1228'),
]

operations = [
migrations.AddField(
model_name='resourcebase',
name='is_approved',
field=models.BooleanField(default=False, help_text='Is this resource validated from a publisher or editor?', verbose_name='Approved'),
),
]

0 comments on commit 6169bc7

Please sign in to comment.