Show More
The requested changes are too big and content was truncated. Show full diff
@@ -0,0 +1,37 b'' | |||||
|
1 | # -*- coding: utf-8 -*- | |||
|
2 | ||||
|
3 | import logging | |||
|
4 | ||||
|
5 | from alembic.migration import MigrationContext | |||
|
6 | from alembic.operations import Operations | |||
|
7 | from sqlalchemy import Column, Boolean | |||
|
8 | ||||
|
9 | from rhodecode.lib.dbmigrate.versions import _reset_base | |||
|
10 | from rhodecode.model import init_model_encryption | |||
|
11 | ||||
|
12 | ||||
|
13 | log = logging.getLogger(__name__) | |||
|
14 | ||||
|
15 | ||||
|
16 | def upgrade(migrate_engine): | |||
|
17 | """ | |||
|
18 | Upgrade operations go here. | |||
|
19 | Don't create your own engine; bind migrate_engine to your metadata | |||
|
20 | """ | |||
|
21 | _reset_base(migrate_engine) | |||
|
22 | from rhodecode.lib.dbmigrate.schema import db_4_16_0_2 | |||
|
23 | ||||
|
24 | init_model_encryption(db_4_16_0_2) | |||
|
25 | ||||
|
26 | context = MigrationContext.configure(migrate_engine.connect()) | |||
|
27 | op = Operations(context) | |||
|
28 | ||||
|
29 | cache_key = db_4_16_0_2.FileStore.__table__ | |||
|
30 | ||||
|
31 | with op.batch_alter_table(cache_key.name) as batch_op: | |||
|
32 | batch_op.add_column( | |||
|
33 | Column('hidden', Boolean(), nullable=True, default=False)) | |||
|
34 | ||||
|
35 | ||||
|
36 | def downgrade(migrate_engine): | |||
|
37 | pass |
@@ -1,57 +1,57 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2019 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2019 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import os |
|
21 | import os | |
22 | import sys |
|
22 | import sys | |
23 | import platform |
|
23 | import platform | |
24 |
|
24 | |||
25 | VERSION = tuple(open(os.path.join( |
|
25 | VERSION = tuple(open(os.path.join( | |
26 | os.path.dirname(__file__), 'VERSION')).read().split('.')) |
|
26 | os.path.dirname(__file__), 'VERSION')).read().split('.')) | |
27 |
|
27 | |||
28 | BACKENDS = { |
|
28 | BACKENDS = { | |
29 | 'hg': 'Mercurial repository', |
|
29 | 'hg': 'Mercurial repository', | |
30 | 'git': 'Git repository', |
|
30 | 'git': 'Git repository', | |
31 | 'svn': 'Subversion repository', |
|
31 | 'svn': 'Subversion repository', | |
32 | } |
|
32 | } | |
33 |
|
33 | |||
34 | CELERY_ENABLED = False |
|
34 | CELERY_ENABLED = False | |
35 | CELERY_EAGER = False |
|
35 | CELERY_EAGER = False | |
36 |
|
36 | |||
37 | # link to config for pyramid |
|
37 | # link to config for pyramid | |
38 | CONFIG = {} |
|
38 | CONFIG = {} | |
39 |
|
39 | |||
40 | # Populated with the settings dictionary from application init in |
|
40 | # Populated with the settings dictionary from application init in | |
41 | # rhodecode.conf.environment.load_pyramid_environment |
|
41 | # rhodecode.conf.environment.load_pyramid_environment | |
42 | PYRAMID_SETTINGS = {} |
|
42 | PYRAMID_SETTINGS = {} | |
43 |
|
43 | |||
44 | # Linked module for extensions |
|
44 | # Linked module for extensions | |
45 | EXTENSIONS = {} |
|
45 | EXTENSIONS = {} | |
46 |
|
46 | |||
47 | __version__ = ('.'.join((str(each) for each in VERSION[:3]))) |
|
47 | __version__ = ('.'.join((str(each) for each in VERSION[:3]))) | |
48 |
__dbversion__ = |
|
48 | __dbversion__ = 100 # defines current db version for migrations | |
49 | __platform__ = platform.system() |
|
49 | __platform__ = platform.system() | |
50 | __license__ = 'AGPLv3, and Commercial License' |
|
50 | __license__ = 'AGPLv3, and Commercial License' | |
51 | __author__ = 'RhodeCode GmbH' |
|
51 | __author__ = 'RhodeCode GmbH' | |
52 | __url__ = 'https://code.rhodecode.com' |
|
52 | __url__ = 'https://code.rhodecode.com' | |
53 |
|
53 | |||
54 | is_windows = __platform__ in ['Windows'] |
|
54 | is_windows = __platform__ in ['Windows'] | |
55 | is_unix = not is_windows |
|
55 | is_unix = not is_windows | |
56 | is_test = False |
|
56 | is_test = False | |
57 | disable_error_handler = False |
|
57 | disable_error_handler = False |
1 | NO CONTENT: modified file |
|
NO CONTENT: modified file | ||
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now