[Debconf-video-commits] r396 - package/branches/pycon09/conf

benh at alioth.debian.org benh at alioth.debian.org
Thu Mar 26 19:39:19 UTC 2009


Author: benh
Date: 2009-03-26 19:39:19 +0000 (Thu, 26 Mar 2009)
New Revision: 396

Modified:
   package/branches/pycon09/conf/video-data.sql
Log:
Add Django site definition, needed by the authentication module.


Modified: package/branches/pycon09/conf/video-data.sql
===================================================================
--- package/branches/pycon09/conf/video-data.sql	2009-03-26 17:24:21 UTC (rev 395)
+++ package/branches/pycon09/conf/video-data.sql	2009-03-26 19:39:19 UTC (rev 396)
@@ -1,6 +1,10 @@
 -- Data that we need to set up in advance and don't expect to update
 -- regularly.
 
+DELETE FROM django_site;
+INSERT INTO django_site(id, domain, name)
+VALUES(1, 'pyconvideo', 'PyCon Video Management');
+
 DELETE FROM conference;
 INSERT INTO conference(conference_id, title, homepage, timezone)
 VALUES(1, 'PyCon 2009', 'http://us.pycon.org/2009', 'America/Chicago');




More information about the Debconf-video-commits mailing list