mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 06:46:02 +00:00
16 lines
360 B
Python
16 lines
360 B
Python
from .. import migration
|
|
|
|
|
|
# this is a deprecated migration
|
|
@migration.migration_class(15)
|
|
class DBMigrateModelSourceTracking(migration.DBMigration):
|
|
"""Add source tracking fields to models tables for Space integration"""
|
|
|
|
async def upgrade(self):
|
|
"""Upgrade"""
|
|
pass
|
|
|
|
async def downgrade(self):
|
|
"""Downgrade"""
|
|
pass
|