Skip to content

Commit

Permalink
Merge pull request #55 from edx/awais786/BOM-1146
Browse files Browse the repository at this point in the history
BOM-1146
  • Loading branch information
awais786 authored Jan 10, 2020
2 parents 752069f + a229fc5 commit b86e6a2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def build_media_pattern(base_folder, file_extension):

setup(
name = "django-wiki",
version="0.0.24",
version="0.0.25",
author="Benjamin Bach",
author_email="[email protected]",
description=("A wiki system written for the Django framework."),
Expand Down
30 changes: 30 additions & 0 deletions wiki/migrations/0006_auto_20200110_1003.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-01-10 10:03
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('wiki', '0005_remove_attachments_and_images'),
]

operations = [
migrations.AlterField(
model_name='urlpath',
name='level',
field=models.PositiveIntegerField(editable=False),
),
migrations.AlterField(
model_name='urlpath',
name='lft',
field=models.PositiveIntegerField(editable=False),
),
migrations.AlterField(
model_name='urlpath',
name='rght',
field=models.PositiveIntegerField(editable=False),
),
]

0 comments on commit b86e6a2

Please sign in to comment.