]> wagnertech.de Git - timetracker.git/blobdiff - mysql.sql
Fixed index name.
[timetracker.git] / mysql.sql
index 23dbb14ade6535148f7fbaa8176cf178709a3f8d..692a8d25c576a07c8bd4471bad886c7a86545843 100644 (file)
--- a/mysql.sql
+++ b/mysql.sql
@@ -177,7 +177,7 @@ CREATE TABLE `tt_project_task_binds` (
 # Indexes for tt_project_task_binds.
 create index project_idx on tt_project_task_binds(project_id);
 create index task_idx on tt_project_task_binds(task_id);
-create unique index project_tax_idx on tt_project_task_binds(project_id, task_id);
+create unique index project_task_idx on tt_project_task_binds(project_id, task_id);
 
 
 #