From cd16187efa5681f5823f03960b4b609dbebb95b0 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Mon, 10 Feb 2014 12:21:37 -0500 Subject: [PATCH] Typo fix. --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 1c6a187..d1616c6 100644 --- a/README +++ b/README @@ -84,7 +84,7 @@ read the GNOME Foundation's instructions as secondary information). mysql -u root -D somedb -p SET NAMES 'utf8'; - INSERT t INTO elections (type, name, voting_start, voting_end, choices_nb, question) VALUES ("elections", "2011 Spring Election", "2011-05-29 00:00:00", "2011-06-12 23:59:59", "7", "Which candidates would you like to see Elected?"); + INSERT INTO elections (type, name, voting_start, voting_end, choices_nb, question) VALUES ("elections", "2011 Spring Election", "2011-05-29 00:00:00", "2011-06-12 23:59:59", "7", "Which candidates would you like to see Elected?"); set @el_id = @@IDENTITY; INSERT INTO election_choices (election_id, choice) VALUES (@el_id, 'Candidate 1'),