Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-wiki
Commits
1ce19283
Commit
1ce19283
authored
Jul 19, 2014
by
benjaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs change on how to handle notifications for 0.0.24
parent
5dd9a984
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
docs/release_notes.rst
+30
-0
No files found.
docs/release_notes.rst
View file @
1ce19283
...
...
@@ -32,6 +32,36 @@ the final release.
* Django < 1.7 (That means Django 1.7 is **not** supported)
* South 0.8.4+ (if you are un an older South, you **need** to upgrade)
**Notifications**
Unfortunately, previous releases of django-wiki have had the wrong APP_LABEL
set for wiki.plugins.notifications and thus all notification subscriptions
will be reset. The error could not be fixed as it was introduced in 0.0.23
as a stupid renaming of the notifications plugin tables with a subsequent
automatic removal of the original notifications tables.
So it's not actually a missing data migration in 0.0.24 that's the reason
why django-nyt starts out with zero subscriptions. It was a table renaming
in 0.0.23 that caused the error.
If you are having problems, please consider re-running the migrations
for notifications like so:
python manage.py migrate notifications zero
python manage.py migrate notifications
If you get `DatabaseError: no such table: notifications_articlesubscription`,
you have been running django-wiki version with differently named tables.
Don't worry, just fake the backwards migration:
python manage.py migrate notifications zero --fake
In order to create notifications for all article authors and editors,
run the following management command:
python manage.py default_notifications
django-wiki 0.1
---------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment