Closed
Bug 659032
Opened 14 years ago
Closed 14 years ago
[Traceback]DatabaseError: (1146, "Table 'addons_zamboni.log_activity_comment' doesn't exist")
Categories
(addons.mozilla.org Graveyard :: Admin/Editor Tools, defect)
addons.mozilla.org Graveyard
Admin/Editor Tools
Tracking
(Not tracked)
VERIFIED
FIXED
6.0.11
People
(Reporter: krupa.mozbugs, Assigned: gkoberger)
References
()
Details
steps to reproduce:
1. Load https://addons.allizom.org/en-US/editors/review/1240086?num=3
2. In editor actions, click on 'Request super review'
3. Add a comment and click save
observed behavior:
Traceback (most recent call last):
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/core/handlers/base.py", line 111, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/data/amo_python/www/preview/zamboni/apps/amo/decorators.py", line 29, in wrapper
return func(request, *args, **kw)
File "/data/amo_python/www/preview/zamboni/apps/editors/views.py", line 43, in wrapper
return func(request, *args, **kw)
File "/data/amo_python/www/preview/zamboni/apps/editors/views.py", line 416, in review
form.helper.process()
File "/data/amo_python/www/preview/zamboni/apps/editors/helpers.py", line 325, in process
return self.actions[action]['method']()
File "/data/amo_python/www/preview/zamboni/apps/editors/helpers.py", line 478, in process_super_review
self.send_super_mail()
File "/data/amo_python/www/preview/zamboni/apps/editors/helpers.py", line 404, in send_super_mail
self.log_action(amo.LOG.REQUEST_SUPER_REVIEW)
File "/data/amo_python/www/preview/zamboni/apps/editors/helpers.py", line 364, in log_action
created=datetime.now(), details=details)
File "/data/amo_python/www/preview/zamboni/apps/amo/log.py", line 407, in log
CommentLog(comments=al.details['comments'], activity_log=al).save()
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/base.py", line 463, in save
self.save_base(using=using, force_insert=force_insert, force_update=force_update)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/base.py", line 556, in save_base
result = manager._insert(values, return_id=update_pk, using=using)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/manager.py", line 198, in _insert
return insert_query(self.model, values, **kwargs)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/query.py", line 1448, in insert_query
return query.get_compiler(using=using).execute_sql(return_id)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/sql/compiler.py", line 806, in execute_sql
cursor = super(SQLInsertCompiler, self).execute_sql(None)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/models/sql/compiler.py", line 750, in execute_sql
cursor.execute(sql, params)
File "/data/amo_python/www/preview/zamboni/vendor/src/django/django/db/backends/mysql/base.py", line 86, in execute
return self.cursor.execute(query, args)
File "/usr/lib/python2.6/site-packages/MySQLdb/cursors.py", line 173, in execute
self.errorhandler(self, exc, value)
File "/usr/lib/python2.6/site-packages/MySQLdb/connections.py", line 36, in defaulterrorhandler
raise errorclass, errorvalue
DatabaseError: (1146, "Table 'addons_zamboni.log_activity_comment' doesn't exist")
Reporter | ||
Updated•14 years ago
|
Target Milestone: --- → 6.0.10
Reporter | ||
Updated•14 years ago
|
Comment 1•14 years ago
|
||
This is just because there are two 193* migrations. Just rename the file. Pick to next also.
Keywords: regression
Assignee | ||
Comment 2•14 years ago
|
||
https://github.com/jbalogh/zamboni/commit/8571105e9310147da67a70df81294fee989e6845
It's also now on next.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 3•14 years ago
|
||
Status: RESOLVED → VERIFIED
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•