Simply for the Notification.object_id migration
This commit is contained in:
parent
f20e508dbc
commit
7fa67404ee
@ -36,12 +36,6 @@ def upgrade():
|
|||||||
comment_table.c.comment_id == notification.object_id
|
comment_table.c.comment_id == notification.object_id
|
||||||
)).first()
|
)).first()
|
||||||
|
|
||||||
# Okay now we need to update the notification with the ID of the link
|
|
||||||
# rather than the ID of TextComment object.
|
|
||||||
db.execute(notification_table.update().values(
|
|
||||||
object_id=comment_link.id
|
|
||||||
))
|
|
||||||
|
|
||||||
# Find the GMR for this comment or make one if one doesn't exist.
|
# Find the GMR for this comment or make one if one doesn't exist.
|
||||||
gmr = db.execute(gmr_table.select().where(and_(
|
gmr = db.execute(gmr_table.select().where(and_(
|
||||||
gmr_table.c.obj_pk == comment_link.id,
|
gmr_table.c.obj_pk == comment_link.id,
|
||||||
@ -86,10 +80,6 @@ def downgrade():
|
|||||||
comment_table.c.id == notification.object_id
|
comment_table.c.id == notification.object_id
|
||||||
)).first()
|
)).first()
|
||||||
|
|
||||||
# Update the notification with the TextComment (i.e. the comment object)
|
|
||||||
db.execute(notification_table.update().values(
|
|
||||||
object_id=comment_link.comment_id
|
|
||||||
))
|
|
||||||
# Find the GMR for the TextComment
|
# Find the GMR for the TextComment
|
||||||
gmr = db.execute(gmr_table.select().where(and_(
|
gmr = db.execute(gmr_table.select().where(and_(
|
||||||
gmr_table.c.obj_pk == comment_link.id,
|
gmr_table.c.obj_pk == comment_link.id,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user