Index: trunk/extensions/MetricsReporting/fetchGoogleSpreadsheet.php |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | //$src = $node->link[2]->attributes()->href; |
68 | 68 | |
69 | 69 | // List based feed |
70 | | - // $src = (string)$node->content["src"]; |
| 70 | + $src = (string)$node->content["src"]; |
71 | 71 | // $src = $node->content->attributes()->src; |
72 | 72 | |
73 | 73 | // Cell based feed |
Index: trunk/extensions/MetricsReporting/GenericDataTable.sql |
— | — | @@ -4,6 +4,6 @@ |
5 | 5 | `project_code` varchar (10) DEFAULT NULL, |
6 | 6 | `country_code` varchar (3) DEFAULT NULL, |
7 | 7 | `value` bigint (12),-- Needs to be decimal? |
8 | | - PRIMARY KEY ( date, language_code, project_code, country_code, value ), |
| 8 | + PRIMARY KEY ( date, language_code, project_code, country_code, value ) |
9 | 9 | -- More indexes may be needed where language, project and country could be null |
10 | 10 | ) ; |
\ No newline at end of file |