retrofix owner_id

pull/222/head
Aevann 2024-02-11 13:01:26 +02:00
parent 2fe2264d5c
commit b08839569d
2 changed files with 13 additions and 0 deletions

View File

@ -2243,3 +2243,15 @@ def unmark_effortpost(pid, v):
send_repeatable_notification(p.author_id, f":marseyitsover: @{v.username} (a site admin) has unmarked [{p.title}](/post/{p.id}) as an effortpost. {coins} coins have been deducted from you. :!marseyitsover:")
return {"message": "Post has been unmarked as an effortpost!"}
@app.get("/retrofix")
@limiter.limit('1/day')
@limiter.limit('1/day', key_func=get_ID)
@admin_level_required(5)
def retrofix(v):
groups = g.db.query(Group)
for group in groups:
group.owner_id = group.memberships[0].user_id
g.db.add(group)
return 'nig'

View File

@ -0,0 +1 @@
alter table groups alter column owner_id set not null;