Peter Palfrader pushed to branch master at snapshot / snapshot

Commits:
9ec466de by Peter Palfrader at 2018-11-17T10:16:37Z
set stat_result.size to bigint.  closes: #913940

- - - - -


1 changed file:

- + db/upgrade_21.py


Changes:

=====================================
db/upgrade_21.py
=====================================
@@ -0,0 +1,33 @@
+#!/usr/bin/python
+#
+# Copyright (c) 2018 Peter Palfrader
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+def upgrade(db):
+    """We have now files >= 2gb in the archive: adapt stat_result also."""
+    db.execute("""
+        ALTER TYPE stat_result ALTER ATTRIBUTE size TYPE BIGINT;
+        """)
+
+    db.execute("UPDATE config SET value='21' WHERE name='db_revision' AND 
value='20'")
+
+# vim:set et:
+# vim:set ts=4:
+# vim:set shiftwidth=4:



View it on GitLab: 
https://salsa.debian.org/snapshot-team/snapshot/commit/9ec466deee5131f7f2a4874627388629b98bd54f

-- 
View it on GitLab: 
https://salsa.debian.org/snapshot-team/snapshot/commit/9ec466deee5131f7f2a4874627388629b98bd54f
You're receiving this email because of your account on salsa.debian.org.

Reply via email to