]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Really fix db setup (Closes: #726719).
authorThomas Goirand <thomas@goirand.fr>
Sat, 19 Oct 2013 06:33:56 +0000 (14:33 +0800)
committerThomas Goirand <thomas@goirand.fr>
Sat, 19 Oct 2013 06:33:56 +0000 (14:33 +0800)
debian/changelog
debian/patches/Use_proper_argument_in_add_column_method_call.patch

index 413ab5f9fd58c857cfd7ec382013699ca6864ee5..55c3d62c90fd29392b1ae2742a921662730981d3 100644 (file)
@@ -1,3 +1,9 @@
+neutron (2013.2-3) UNRELEASED; urgency=low
+
+  * Really fix db setup (Closes: #726719).
+
+ -- Thomas Goirand <zigo@debian.org>  Sat, 19 Oct 2013 14:33:15 +0800
+
 neutron (2013.2-2) unstable; urgency=low
 
   * Adds upstream fix for db setup (Closes: #726719).
index fb9ccea43b81941882dbf5d8203e311a8ea17239..149311884b02bf8b3555fed7d39e68db0eb9e164 100644 (file)
@@ -12,7 +12,7 @@ Last-Update: Fri, 18 Oct 2013 21:50:42 +0800 (17:50 +0400)
  
      op.add_column('routers', sa.Column('enable_snat', sa.Boolean(),
 -                                       nullable=False, default=True))
-+                                       nullable=False, server_default=True))
++                                       nullable=False), server_default=True)
      # Set enable_snat to True for existing routers
      op.execute("UPDATE routers SET enable_snat=True")