fix: Skip fulltext indexes during sync (#24728)
These are not managed by framework's migration system so we shouldn't delete them.
This commit is contained in:
parent
77b248b180
commit
c02f5d5876
1 changed files with 1 additions and 0 deletions
|
|
@ -383,6 +383,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database):
|
|||
WHERE Column_name = "{fieldname}"
|
||||
AND Seq_in_index = 1
|
||||
AND Non_unique={int(not unique)}
|
||||
AND Index_type != 'FULLTEXT'
|
||||
""",
|
||||
as_dict=True,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue