[Pypi-checkins] r959 - trunk/pypi/tools

richard python-checkins at python.org
Tue Aug 23 08:45:02 CEST 2011


Author: richard
Date: Tue Aug 23 08:45:02 2011
New Revision: 959

Added:
   trunk/pypi/tools/sql-migrate-20110823-2.sql
Log:
addition of CSRF protection; thanks Capel Brunker

Added: trunk/pypi/tools/sql-migrate-20110823-2.sql
==============================================================================
--- (empty file)
+++ trunk/pypi/tools/sql-migrate-20110823-2.sql	Tue Aug 23 08:45:02 2011
@@ -0,0 +1,7 @@
+create table csrf_tokens (
+  name    text REFERENCES users(name) ON DELETE CASCADE,
+  token   text,
+  end_date timestamp without time zone,
+  PRIMARY KEY(name)
+);
+


More information about the Pypi-checkins mailing list