This commit is contained in:
Andreas Schneider 2008-04-30 12:45:03 +02:00
Родитель 8ffce13e0e
Коммит f1078daa08
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -215,7 +215,20 @@ int csync_journal_create_tables(CSYNC *ctx) {
"PRIMARY KEY(phash)"
");"
);
if (result == NULL) {
return -1;
}
c_strlist_destroy(result);
result = csync_journal_query(ctx,
"CREATE INDEX metadata_phash ON metadata(phash);");
if (result == NULL) {
return -1;
}
c_strlist_destroy(result);
result = csync_journal_query(ctx,
"CREATE INDEX metadata_inode ON metadata(inode);");
if (result == NULL) {
return -1;
}