##// END OF EJS Templates
Moved imageboard settings to the boards settings module. Added setting to disable archive
Moved imageboard settings to the boards settings module. Added setting to disable archive

File last commit:

r291:3b113b42 default
r716:a6b9dd95 1.8.1 default
Show More
maintenance.py
15 lines | 302 B | text/x-python | PythonLexer
"""
Maintenance script for neboard imageboard. Use this to update data after
migrations etc.
"""
from boards.models import Post
from boards import views
def update_posts():
for post in Post.objects.all():
print 'Updating post #' + str(post.id)
post.save()
Post.objects.connect_replies(post)