mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Drop indexes on renamed table
avoid naming conflicts on recreate (indexes are not renamed, and keeping them on backup tables does not really make sense). fixes #1396
This commit is contained in:
parent
2c27736dfe
commit
3b951c3817
|
@ -100,6 +100,9 @@ def check_migrate(engine) -> None:
|
|||
|
||||
# Schema migration necessary
|
||||
engine.execute(f"alter table trades rename to {table_back_name}")
|
||||
# drop indexes on backup table
|
||||
for index in inspector.get_indexes(table_back_name):
|
||||
engine.execute(f"drop index {index['name']}")
|
||||
# let SQLAlchemy create the schema as required
|
||||
_DECL_BASE.metadata.create_all(engine)
|
||||
|
||||
|
|
|
@ -446,6 +446,8 @@ def test_migrate_new(mocker, default_conf, fee, caplog):
|
|||
|
||||
# Create table using the old format
|
||||
engine.execute(create_table_old)
|
||||
engine.execute("create index ix_trades_is_open on trades(is_open)")
|
||||
engine.execute("create index ix_trades_pair on trades(pair)")
|
||||
engine.execute(insert_table_old)
|
||||
|
||||
# fake previous backup
|
||||
|
|
Loading…
Reference in New Issue
Block a user