- Add missing actions and make a clear boundary between actions, services and nfra (i.e: actions shouldn't use stuff from infra/) - Delete stuff not in use: tts, gtts, etc - Add a ton of tests
19 lines
346 B
Python
19 lines
346 B
Python
"""
|
|
This module contains a Caribou migration.
|
|
|
|
Migration Name: rename_settings_to_chatbot
|
|
Migration Version: 20250226120422
|
|
"""
|
|
|
|
|
|
def upgrade(connection):
|
|
sql = """
|
|
ALTER TABLE settings RENAME TO chatbot;
|
|
"""
|
|
connection.execute(sql)
|
|
connection.commit()
|
|
|
|
|
|
def downgrade(connection):
|
|
# add your downgrade step here
|
|
pass
|