From: Thomas Goirand Date: Sat, 19 Oct 2013 06:33:56 +0000 (+0800) Subject: Really fix db setup (Closes: #726719). X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=4e9fe241a99da75725ba1ea87a0a4665e328055a;p=openstack-build%2Fneutron-build.git Really fix db setup (Closes: #726719). --- diff --git a/debian/changelog b/debian/changelog index 413ab5f9f..55c3d62c9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +neutron (2013.2-3) UNRELEASED; urgency=low + + * Really fix db setup (Closes: #726719). + + -- Thomas Goirand Sat, 19 Oct 2013 14:33:15 +0800 + neutron (2013.2-2) unstable; urgency=low * Adds upstream fix for db setup (Closes: #726719). diff --git a/debian/patches/Use_proper_argument_in_add_column_method_call.patch b/debian/patches/Use_proper_argument_in_add_column_method_call.patch index fb9ccea43..149311884 100644 --- a/debian/patches/Use_proper_argument_in_add_column_method_call.patch +++ b/debian/patches/Use_proper_argument_in_add_column_method_call.patch @@ -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")