mirror of
https://github.com/moodle/moodle.git
synced 2025-04-16 14:02:32 +02:00
bug fixing indexing problem
This commit is contained in:
parent
25d0380b6e
commit
b250d8b32b
@ -13,14 +13,14 @@
|
||||
</TABLE>
|
||||
<TABLE name="backup_files">
|
||||
<FIELDS>
|
||||
<FIELD name="file_type" method="NO_CONV" type="varchar" length="10" dropprimary="true" />
|
||||
<FIELD name="path" method="NO_CONV" type="varchar" length="255" addprimary="(backup_code, file_type(10), path(255))"/>
|
||||
<FIELD name="file_type" method="NO_CONV" type="varchar" length="10" dropindex="backup_files_uk" />
|
||||
<FIELD name="path" method="NO_CONV" type="varchar" length="255" adduniqueindex="backup_files_uk (backup_code, file_type(10), path(255))"/>
|
||||
</FIELDS>
|
||||
</TABLE>
|
||||
<TABLE name="backup_ids">
|
||||
<FIELDS>
|
||||
<FIELD name="table_name" method="NO_CONV" type="varchar" length="30" dropprimary="true" addprimary="(backup_code, table_name(30), old_id)"/>
|
||||
<FIELD name="info" method="PHP_FUNCTION" type="mediumtext" length="255">
|
||||
<FIELD name="table_name" method="NO_CONV" type="varchar" length="30" dropindex="backup_ids_uk" adduniqueindex=" backup_ids_uk(backup_code, table_name(30), old_id)"/>
|
||||
<FIELD name="info" method="PHP_FUNCTION" type="mediumtext" length="0">
|
||||
<PHP_FUNCTION>
|
||||
migrate2utf8_backup_ids_info(RECORDID)
|
||||
</PHP_FUNCTION>
|
||||
|
Loading…
x
Reference in New Issue
Block a user