[Pypi-checkins] r994 - trunk/pypi/tools
martin.von.loewis
python-checkins at python.org
Wed Nov 30 10:28:16 CET 2011
Author: martin.von.loewis
Date: Wed Nov 30 10:28:10 2011
New Revision: 994
Added:
trunk/pypi/tools/sql-migrate-20111130.sql (contents, props changed)
Log:
Support renaming users.
Added: trunk/pypi/tools/sql-migrate-20111130.sql
==============================================================================
--- (empty file)
+++ trunk/pypi/tools/sql-migrate-20111130.sql Wed Nov 30 10:28:10 2011
@@ -0,0 +1,4 @@
+begin;
+alter table journals drop constraint "$1";
+alter table journals add foreign key (submitted_by) references users (name) on update cascade;
+end;
More information about the Pypi-checkins
mailing list