Author: brosner
Date: Wed Sep 10 23:11:37 2008
New Revision: 864
Modified:
trunk/pinax/sql_changelog.txt
Log:
Fixed the quoting in the recent change to add a sequence update.
Modified: trunk/pinax/sql_changelog.txt
==============================================================================
--- trunk/pinax/sql_changelog.txt (original)
+++ trunk/pinax/sql_changelog.txt Wed Sep 10 23:11:37 2008
@@ -76,7 +76,7 @@
# postgresql
INSERT INTO "projects_projectmember" SELECT *, false, '', now()
FROM "projects_project_members";
-SELECT setval("public.projects_projectmember_id_seq", (SELECT max(id)
FROM "projects_projectmember"), true);
+SELECT setval('public.projects_projectmember_id_seq', (SELECT max(id)
FROM "projects_projectmember"), true);
## removed message_template from ObservedItem
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---