#3 修正
このコミットが含まれているのは:
@@ -0,0 +1 @@
|
||||
__pycache__
|
||||
@@ -1,6 +1,6 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from ..config import CONFIG
|
||||
from config import CONFIG
|
||||
from eloquent import DatabaseManager, Schema
|
||||
|
||||
DB = DatabaseManager (CONFIG)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from ..config import CONFIG
|
||||
from config import CONFIG
|
||||
from eloquent import DatabaseManager, Schema
|
||||
|
||||
DB = DatabaseManager (CONFIG)
|
||||
@@ -20,8 +20,8 @@ def create_answered_flags (
|
||||
table.unsigned_big_integer ('answer_id').comment ('回答')
|
||||
table.integer ('platform').comment ('プラットフォーム区分')
|
||||
table.boolean ('answered').default (False).comment ('回答済')
|
||||
table.unique (['answered_id', 'platform'])
|
||||
table.foreign ('answered_id').references ('id').on ('answers').on_update ('cascade').on_delete ('cascade')
|
||||
table.unique (['answer_id', 'platform'])
|
||||
table.foreign ('answer_id').references ('id').on ('answers').on_update ('cascade').on_delete ('cascade')
|
||||
|
||||
|
||||
def drop_answered_column_in_answers (
|
||||
|
||||
新しい課題から参照
ユーザをブロックする