Skip to content

Commit

Permalink
Fix drop index syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
foldericon committed Jul 17, 2014
1 parent 117aec5 commit 0afe3f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/TXURLDumper.m
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ - (void)createDBStructure

- (void)resetDBStructure
{
[self updateDBWithSQL:@"DROP INDEX IDX_URLS_1 on urls"];
[self updateDBWithSQL:@"DROP INDEX IDX_URLS_1"];
[self updateDBWithSQL:@"DROP TABLE urls"];
[self createDBStructure];
}
Expand Down

0 comments on commit 0afe3f9

Please sign in to comment.