config command now works fully
This commit is contained in:
@@ -12,5 +12,6 @@ db = {
|
||||
'exceptions': DBDict(DB, autocommit=True, tablename='exceptions'),
|
||||
'queue': DBDict(DB, autocommit=True, tablename='queue'),
|
||||
'generated': DBDict(DB, autocommit=True, tablename='generated'),
|
||||
'actions': DBDict(DB, autocommit=True, tablename='actions'),
|
||||
'prompts': DBDict(DB, autocommit=True, tablename='prompts')
|
||||
}
|
||||
|
||||
@@ -8,12 +8,13 @@ from .meta import DBMeta
|
||||
|
||||
|
||||
class DBTables:
|
||||
tables = ['config', 'cooldown', 'exceptions', 'queue', 'generated', 'prompts']
|
||||
tables = ['config', 'cooldown', 'exceptions', 'queue', 'generated', 'actions', 'prompts']
|
||||
config = "config"
|
||||
cooldown = "cooldown"
|
||||
exceptions = "exceptions"
|
||||
queue = "queue"
|
||||
generated = "generated"
|
||||
actions = "actions"
|
||||
prompts = "prompts"
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user