~hadware/magicicada-server/trusty-support

« back to all changes in this revision

Viewing changes to src/backends/db/schemas/fsync_shard/patch_3.py

  • Committer: Facundo Batista
  • Date: 2015-08-05 13:10:02 UTC
  • Revision ID: facundo@taniquetil.com.ar-20150805131002-he7b7k704d8o7js6
First released version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2008-2015 Canonical
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU Affero General Public License as
 
5
# published by the Free Software Foundation, either version 3 of the
 
6
# License, or (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU Affero General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU Affero General Public License
 
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# For further info, check  http://launchpad.net/filesync-server
 
17
 
 
18
"""Add 'magic_hash_context' field to UploadJob.
 
19
 
 
20
This field will be used to track the state/context of the magic hasher.
 
21
"""
 
22
 
 
23
SQL = [
 
24
    """
 
25
    ALTER TABLE uploadjob ADD COLUMN magic_hash_context BYTEA;
 
26
    """,
 
27
]
 
28
 
 
29
 
 
30
def apply(store):
 
31
    """Apply the patch."""
 
32
    for sql in SQL:
 
33
        store.execute(sql)