|
@@ -0,0 +1,19 @@
|
|
|
+
|
|
|
+
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+from django.db import migrations
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('base', '0003_footertext'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterModelOptions(
|
|
|
+ name='footertext',
|
|
|
+ options={'verbose_name_plural': 'Footer Text'},
|
|
|
+ ),
|
|
|
+ ]
|